最新回答 / 慕婉清8313533
This inspection detects names that should resolve but don't. Due to dynamic dispatch and duck typing, this is possible in a limited but useful number of cases. Top-level and class-level items are supported better than instance items.上面大致意思:import 不能识别自定义包...
2018-08-20
最赞回答 / 夏雅
如果使用django2.0以上的版本,就用这个方法去配置url
path('article/<int:article_id>/', views.article_page),
2018-08-17
最赞回答 / 慕工程5007123
你的问题应该出现在Article.title和Article.cotent,解释如下:模板收到的是一个dict,dict里面包含数据对象article,在模板文件里,键(key)为参数名,{{参数名}}获得值(value),dict是区分大小写的,你传入的dict是{'article':article},key = article,值为article数据对象,{{ article }}获得article数据对象,article数据对象有title和content属性,所以key=Article的值是不存...
2018-08-15
最赞回答 / 慕粉4154810
from django.contrib import admin # Register your models here. from .models import Article admin.site.register(Article)这么写
2018-08-14