这是我的观点:
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>
“子弹”属于另一个对象,该对象是我的对象“对象”中的外键。
在这里使用是问题吗?