本文介绍了__init __()得到了一个意想不到的关键字参数'attrs'的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
forms.py
类ImportExcelForm(Form):
in forms.I我得到这个错误
file = forms.FileField(attrs = {'我'''''''''''''''''''''''''''''''''''''''''' $ c> filefield__ init __()得到一个意想不到的关键字参数'attrs'
我做错了。
谢谢
解决方案
attrs
不是该字段的参数,它是小部件的参数。file = forms.FieldField(widget = forms.FileInput(attrs = {'class':'rounded_list'}))
请注意,某些浏览器不允许设置文件输入。
forms.py
class ImportExcelForm(Form): file = forms.FileField(attrs={'class':'rounded_list',})
I am trying to add css class to my
filefield
in forms.I am getting this error"__init__() got an unexpected keyword argument 'attrs'"
What i did wrong.
Thanks
解决方案
attrs
is not an argument to the field, it's an argument to the widget.file = forms.FieldField(widget=forms.FileInput(attrs={'class': 'rounded_list'}))
Note that some browsers don't allow styling of the file input.
这篇关于__init __()得到了一个意想不到的关键字参数'attrs'的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!