在 django url 中传递数组

发布于 2024-09-14 11:30:14 字数 458 浏览 5 评论 0原文

我们可以将数组传递给 django url

   <script>
     function save()
     {
       window.location = "/display/xlsdisplay/" + objarr ;   
     }

    var objarr = new Array();

    </script>

Urls.py

         (r'^xlsdisplay/(?P<qid>\d+)$', 'xlsdisplay'),

有一个错误说

             http://192.168.1.11/display/xlsdisplay/334,335,336,337,338,339,340,341,342,343

Can we pass an array to a django url

   <script>
     function save()
     {
       window.location = "/display/xlsdisplay/" + objarr ;   
     }

    var objarr = new Array();

    </script>

Urls.py

         (r'^xlsdisplay/(?P<qid>\d+)

There is an error saying

             http://192.168.1.11/display/xlsdisplay/334,335,336,337,338,339,340,341,342,343
, 'xlsdisplay'),

There is an error saying

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

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

发布评论

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

评论(1

装纯掩盖桑 2024-09-21 11:30:14
  1. URL 中使用的正则表达式仅匹配数字序列。逗号需要不同的表达方式。
  2. 我不知道您的具体需求,但您应该查看 命名 URL,而不是硬编码它们。
  1. The regular expression used in your URL will only match a sequence of digits. The comma will require a different expression.
  2. I don't know your specific need but you ought to look at naming URLs rather than hard cording them.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文