from django.shortcuts import render
from .models import Destination
# Create your views here.
def index(request):
dest1 = Destination.objects.all()
return render(request,"index.html",{'dest1':dest1})
错误:从 .models 导入目的地 ImportError:无法从“travellor.models”导入名称“目的地”(C:\Users\Raja Kumar\projects\telusko\travellor\models.py)
谁能帮我吗 ?