UnboundLocalError: local variable 'last_result' referenced before assignment
__call__
def __call__(self, environ: dict, start_response: t.Callable) -> t.Any:
"""The WSGI server calls the Flask application object as the
WSGI application. This calls :meth:`wsgi_app`, which can be
wrapped to apply middleware.
"""
return self.wsgi_app(environ, start_response)
wsgi_app
try:
ctx.push()
response = self.full_dispatch_request()
except Exception as e:
error = e
response = self.handle_exception(e)
except: # noqa: B001
error = sys.exc_info()[1]
raise
return response(environ, start_response)
finally:
wsgi_app
ctx = self.request_context(environ)
error: BaseException | None = None
try:
try:
ctx.push()
response = self.full_dispatch_request()
except Exception as e:
error = e
response = self.handle_exception(e)
except: # noqa: B001
error = sys.exc_info()[1]
full_dispatch_request
request_started.send(self, _async_wrapper=self.ensure_sync)
rv = self.preprocess_request()
if rv is None:
rv = self.dispatch_request()
except Exception as e:
rv = self.handle_user_exception(e)
return self.finalize_request(rv)
def finalize_request(
self,
rv: ft.ResponseReturnValue | HTTPException,
full_dispatch_request
try:
request_started.send(self, _async_wrapper=self.ensure_sync)
rv = self.preprocess_request()
if rv is None:
rv = self.dispatch_request()
except Exception as e:
rv = self.handle_user_exception(e)
return self.finalize_request(rv)
def finalize_request(
dispatch_request
and req.method == "OPTIONS"
):
return self.make_default_options_response()
# otherwise dispatch to the handler for that endpoint
view_args: dict[str, t.Any] = req.view_args # type: ignore[assignment]
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
def full_dispatch_request(self) -> Response:
"""Dispatches the request and on top of that performs request
pre and postprocessing as well as HTTP exception catching and
error handling.
rewrite_text_api
lang = request.json['lang']
text = request.json['text']
text = text.strip()
if not text:
return ''
return rewrite_text(text, level, lang)
@app.route('/api/title', methods=['get'])
def rewrite_title_api():
"""封装AI接口"""
rewrite_text
def rewrite_text(text:str, level = 0, lang = '简体中文'):
"""改写内容"""
if level > 0:
return full_rewrite(text, lang)
else:
return simple_rewrite(text, lang)
def rewrite_title(text:str, lang = '简体中文'):
"""改写标题"""
if not lang:
simple_rewrite
result = []
for section in sections:
if section == first_section:
result.append(first_result)
continue
if last_result and section == last_section:
result.append(last_result)
continue
result.append(section)
return 'n'.join(result)
UnboundLocalError: local variable 'last_result' referenced before assignment
This is the Copy/Paste friendly version of the traceback.
The console is locked and needs to be unlocked by entering the PIN. You can find the PIN printed out on the standard output of your shell that runs the server.