在 Django 中传递参数以形成动作?

发布于 2024-11-07 04:06:05 字数 385 浏览 0 评论 0原文

Template:

<form method="post" action="/reply/{{feed.id}}/">

    {{rform.as_p}}

    <input type="submit" value="send" /> 

</form>

和 url:

(r'^reply/(\d+)/$',reply),

但是当我们提交表单时,{{feed.id}} 没有被翻译,url 指向 /reply//

表单中不允许使用参数行动?
如果允许的话为什么它在这里不起作用?

谢谢

Template:

<form method="post" action="/reply/{{feed.id}}/">

    {{rform.as_p}}

    <input type="submit" value="send" /> 

</form>

and url:

(r'^reply/(\d+)/

But when we submit the form, {{feed.id}} is not translated and url directs to /reply//

Are parameters not allowed in form actions?
If its allowed then why is it not working here?

Thanks

,reply),

But when we submit the form, {{feed.id}} is not translated and url directs to /reply//

Are parameters not allowed in form actions?
If its allowed then why is it not working here?

Thanks

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

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

发布评论

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

评论(2

剩一世无双 2024-11-14 04:06:05

如果 {{ feed.id }} 为空,则意味着 feed.id 为空,或者 feed 为 None。使用 render_to_response 渲染模板时,请确保在视图上下文中传递 feed

If {{ feed.id }} is empty it means that that either feed.id is empty, or feed is None. Make sure you are passing feed in your view context when you render the template using render_to_response

猫性小仙女 2024-11-14 04:06:05

我假设你的提要是字典对象?

在您的 views.py 模块中

from django.shortcuts import render_to_response;

def myforms(request):
    feed = {"id":"369"}
    return render_to_response('html-template/blank.html', {'feed': feed})

I assume your feed is dictionary object?

In your views.py module

from django.shortcuts import render_to_response;

def myforms(request):
    feed = {"id":"369"}
    return render_to_response('html-template/blank.html', {'feed': feed})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文