request.form获取不到form texarea的值

发布于 2022-08-31 09:26:51 字数 637 浏览 13 评论 0

views中获取form:

content = request.form('comment')

html文件是:

<div class="enter">
  <form id="comment_form" name="comment" action="" method="POST" role="form">
    <div>
    <textarea id="comment" name="comment" class="form-control" rows="3">                            </textarea>
    </div>
    <button type="submit" class="btn btn-default">Submit</button>
  </form>
</div>

错误提示是:

content = request.form('comment')

TypeError: 'ImmutableMultiDict' object is not callable

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2022-09-07 09:26:51

TypeError: 'ImmutableMultiDict' object is not callable,用错了,这个提示已经告诉你,form这个字典是不可调用
是request.form.get("comment");

錯遇了你 2022-09-07 09:26:51

把 request.form('comment') 改成 content = request.form['comment']

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文