debugging 将debug = true更改为false

ve7v8dk2  于 2022-11-14  发布在  其他
关注(0)|答案(1)|浏览(185)

'从django.shortcuts导入渲染
from .models导入产品
def产品详细信息(请求,slug):返回render(request,'store/product_detail.html',)返回一个新的字符串。
views.py
'我的模板很难工作。
我正在创建一个电子商务商店的vs代码虚拟环境,并在我创建了产品的网址后,它告诉我模板不存在。
我已经尝试了我能找到的每一个教程中的一切,但没有一个是工作。
我也试过调试,但沿着卡住了。
我需要帮助才能前进。
Template does not exist

nkkqxpd9

nkkqxpd91#

请检查这些东西...

1st - check your application is registered or not in settings.py
2nd - in the template folder store/product_detail.html exist or not make sure the template name should be same as you typed in views.py

if these two things are okay then the project should be worked

相关问题