AttributeError: module polls.views has no attribute index
时间: 2023-10-30 08:00:35 浏览: 201
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误提示是指在 `polls.views` 模块中没有名为 `index` 的属性。这通常意味着在 `polls.views` 模块中没有定义名为 `index` 的函数或变量。
要解决这个问题,你可以检查一下 `polls.views` 模块中是否存在名为 `index` 的函数或变量,确保其被正确定义。另外,也可以检查一下是否导入了正确的模块或是否有拼写错误。
如果你能提供更多关于你的代码的信息,我可以帮你更具体地找到问题所在。
阅读全文