form.cleaned_data 作为字典
为什么当我调用这样的函数时:
function(request, **form.cleaned_data)
我可以将表单的数据作为字典发送,但是当我尝试这样做时:
data = **form.cleaned_data
我收到错误?
Why when I call a function like this :
function(request, **form.cleaned_data)
I can send form's data as a dictionary, but when I try doing like this :
data = **form.cleaned_data
I'm getting error ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
**
技巧仅在函数调用中展开字典时才起作用;您不能在函数调用之外使用它。The
**
trick only works when a dictionary is expanded in a function call; you can't use it outside of a function call.