鉴于我有一个引用产品模型的版本模型,我如何以给定此 url 的形式创建使用产品模型实例的通用创建或更新视图:
url(r'^product/(?P<pk>\d+)/create_version', ProductVersionCreateView.as_view(), name='workspace_product_create_version'),
使用 django 的通用视图。
from django.views.generic import UpdateView, CreateView
#strongly recommend creating a views.py and putting this logic in there.
class ProductVersionCreateView(CreateView):
model = ProductVersion
def get_initial(self):
return {"key": value} #dictionary for initial.
class ProductVersionUpdateView(UpdateView):
model = ProductVersion
urlpatterns += url(r'^product/create_version', ProductVersionCreateView.as_view(), name='workspace_product_create_version'), #no primary key needed
urlpatterns += url(r'^product/(?P<pk>\d+)/update_version', ProductVersionEditView.as_view(), name='workspace_product_create_version'),
这些文档在这方面有一周的时间,但无论如何我都会阅读它们。 https://docs.djangoproject.com/en/1.3/topics/class-based-views/