CreateView不创建任何对象

时间:2019-07-12 15:01:41

标签: django django-views

这是我的观点:

GetComponent

这就是视图的调用方式:

class ObjectCreateView(CreateView):

    template_name = 'dashboard/add.html'
    success_url = '/'
    form_class = ObjectCreateForm

还有urls.py:

<a href="{% url 'dashboard:add' request.resolver_match.kwargs.slug %}">
  new
</a>

“子弹”属于另一个对象,该对象是我的对象“对象”中的外键。

在这里使用是问题吗?

0 个答案:

没有答案