从Django.shortcuts导入呈现
from.Models导入目标
def index(request):dest1=destination.objects.all()返回呈现(request,“index.html”,{'dest1':dest1})
错误:from.Models导入Destination ImporTerror:无法从“Travellor.Models”导入名称“Destination”(C:\Users\Raja Kumar\Projects\Telusko\Travellor\Models.py)
谁能帮帮我吗?
错误发生在From.Models import Destination
中。 基本上是说models.py模块中没有这样的模型。
您试图从当前应用程序导入模型,但此模型不存在。
对于外部导入,您需要将应用程序指向models之前
from destination.models import Destination
如果destination
不同,请将其更改为应用程序的名称