我有一个Python API,在Azure上托管了三个端点。其中一个端点上周开始返回服务器错误。我检查了平台,所以一切都很好。
我检查了日志,发现对于此端点,回溯在末尾返回此行
File ".\app\models.py", line 280, in json
return {'entity': otherentity.name, 'details': self.details, 'entity_id': otherentity.id,
AttributeError: 'NoneType' object has no attribute 'name'
这是stdout和std错误:
StdOut:
StdErr: D:\home\site\wwwroot\env\Lib\site-
packages\flask_cache\jinja2ext.py:33: ExtDeprecationWarning: Importing
flask.ext.cache is deprecated, use flask_cache instead.
from flask.ext.cache import make_template_fragment_key
ErrorCode Access is denied.
(0x5)
280行引用的代码块是类的一部分。这是块:
def json(self, entityid):
otherentity = self.entity_1 if entityid == self.entity_id2 else self.entity_2
return {'entity': otherentity.name, 'details': self.details, 'entity_id': otherentity.id,
'id': self.id}
这个应用程序有点像我,所以我在调试方面很新,从我所看到的,问题是调用.name因为它不存在?另外,不确定不推荐使用flask_cache是否与此问题有关。
我发现不再维护flask_cache,而是应该使用flask-caching。
有关如何继续修复此服务器错误的任何想法?我不确定为什么使用相同模型的其他两个端点工作但不能工作。
答案 0 :(得分:0)
解决方案是在后端使用if / else语句验证代码。通过前端接受的用户输入导致连接失败,并且该修复纠正了该问题。
下一步是向前端添加输入验证以避免将来出现问题。感谢任何检查过这个并帮助过的人。