我在表单中覆盖了init方法,现在返回错误' TransactionForm'对象没有属性' _errors' 。
我希望这会有效,因为我已经在 init 中加入了super,但是我可能并不了解如何正确使用它。一个解释将不胜感激。我需要做些什么来使form.errors工作?
完整追溯
回溯:
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\核心\处理器\ exception.py"在 内 35. response = get_response(request)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\核心\处理器\ base.py"在 _get_response 128. response = self.process_exception_by_middleware(e,request)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\核心\处理器\ base.py"在 _get_response 126. response = wrapped_callback(request,* callback_args,** callback_kwargs)
文件" C:\ py \ portfolio-project \ myportfolio \ views.py"在add_transaction中 136. return render(request,' myportfolio / add_transaction.html',{' form':form})
文件" C:\ Program Files \ Python36 \ lib \ site-packages \ django \ shortcuts.py" 在渲染中 36. content = loader.render_to_string(template_name,context,request,using = using)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ loader.py"在 render_to_string 62. return template.render(context,request)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\后端\ django.py" 在渲染中 61. return self.template.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 175. return self._render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在_render 167.返回self.nodelist.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 943. bit = node.render_annotated(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在 render_annotated 910. return self.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ loader_tags.py"在 给予 155. return compiled_parent._render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在_render 167.返回self.nodelist.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 943. bit = node.render_annotated(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在 render_annotated 910. return self.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ loader_tags.py"在 给予 155. return compiled_parent._render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在_render 167.返回self.nodelist.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 943. bit = node.render_annotated(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在 render_annotated 910. return self.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ loader_tags.py"在 给予 67. result = block.nodelist.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 943. bit = node.render_annotated(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在 render_annotated 910. return self.render(context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在渲染中 999. return render_value_in_context(output,context)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\模板\ base.py"在 render_value_in_context 978. value = str(value)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\ utils的\ html.py"在 371. klass。 str = lambda self:mark_safe(klass_str(self))
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\表格\ forms.py"在 str 136. return self.as_table()
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\表格\ forms.py"在as_table中 279. errors_on_separate_row = False)
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\表格\ forms.py"在 _html_output 196. top_errors = self.non_field_errors()#应在所有字段上方显示的错误。
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\表格\ forms.py"在 non_field_errors 305. return self.errors.get(NON_FIELD_ERRORS,self.error_class(error_class =' nonfield'))
文件" C:\ Program 文件\ Python36 \ LIB \站点包\ Django的\表格\ forms.py"在错误 173.如果self._errors为None:
异常类型:/ myportfolio / add_transaction /中的AttributeError 例外价值:' TransactionForm'对象没有属性' _errors'
形式
class TransactionForm(forms.ModelForm):
CHOICES = ((1, 'Buy'), (2, 'Sell'),)
coin = forms.ModelChoiceField(queryset = Coin.objects.all())
buysell = forms.ChoiceField(choices = CHOICES)
field_order = ['buysell', 'coin', 'amount', 'trade_price']
class Meta:
model = Transactions
fields = {'buysell', 'coin', 'amount', 'trade_price'}
def __init__(self, coin_price = None, user = None, *args, **kwargs):
if user:
self.user = user
qs_coin = Portfolio.objects.filter(user = self.user).values('coin').distinct()
super(TransactionForm, self).__init__(self.user, *args, **kwargs)
self.fields['coin'].queryset = qs_coin
if coin_price:
self.coin_price = coin_price
super(TransactionForm, self).__init__(self.user, self.coin_price, *args, **kwargs)
self.fields['price'] = self.coin_price
浏览
def add_transaction(request):
print(request.method)
print("test1")
print(request.GET)
if request.method == "GET":
if request.is_ajax():
print("ajax test")
data = {
'test': "test1"
}
form = TransactionForm(request.GET, user = request.user, coin_price = GetCoin("Bitcoin").price)
return JsonResponse(data)
form = TransactionForm()
if request.method == "POST":
print("test2")
form = TransactionForm(request.POST)
if form.is_valid():
print("test3")
obj = form.save(commit = False)
obj.user = request.user
obj.save()
return HttpResponseRedirect('/myportfolio/')
else:
print(form.errors)
return render(request, 'myportfolio/add_transaction.html', {'form': form})
答案 0 :(得分:2)
如果未提供__init__
和coin_price
,则不会调用表单的超类user
方法。这就是为什么没有创建_errors
这样的表单属性的原因。您需要像这样重写表单__init__
:
def __init__(self, coin_price = None, user = None, *args, **kwargs):
super(TransactionForm, self).__init__(*args, **kwargs)
if user:
self.user = user
qs_coin = Portfolio.objects.filter(user = self.user).values('coin').distinct()
self.fields['coin'].queryset = qs_coin
if coin_price:
self.coin_price = coin_price
self.fields['price'] = self.coin_price
在任何情况下都要调用super.__init__()
。