JavaScript 数组

发布于 2024-11-08 20:05:00 字数 158 浏览 0 评论 0原文

假设我的数组中有一堆名字,我想将这些数据发布到我网站上的另一个网址,但发布数据将是“name =“+ name +”& name =“+ name +””;等等

因此,对于每个名称,我需要生成另一个 name= 以添加到发布数据,直到没有更多名称,

我该怎么做?

Say I have a bunch of names in a array and I want to post this data to another url on my site, but the post data will be "name="+name+"&name="+name+""; etcetc

So for each name i need to generate another name= to add to post data until there are no more names

How can I do this?

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

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

发布评论

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

评论(2

灰色世界里的红玫瑰 2024-11-15 20:05:01

您可以使用 jquery param() 序列化数组以将其发布到 url 中。请参阅此处作为参考。它非常有用,因为它会自动对您的数据进行编码。

You can use jquery param() to serialize an array to post it in a url. look here for reference. It's very useful becouse it encodes automatically your data.

淡淡の花香 2024-11-15 20:05:00

您可以将数组中的每个元素映射到前面带有 name= 的同一元素,然后使用 & 字符将它们连接起来。

return names.map(function(name) {
    return "name=" + name;
}).join("&");

如果您需要支持 Array 上没有 map 方法的浏览器(需要 JS 1.6),您可以从 MDC 或仅使用 for 循环。

var queryBits = [];
for (var i = 0, len = names.length; i < len; i++) {
    queryBits.push("name=" + names[i]);
}
return queryBits.join("&");

You can map every element in the array to the same thing with name= prepended, and then join them with the & character.

return names.map(function(name) {
    return "name=" + name;
}).join("&");

If you need to support browsers that don't have the map method on Array (it requires JS 1.6), you can pinch it from the MDC or just use a for loop instead.

var queryBits = [];
for (var i = 0, len = names.length; i < len; i++) {
    queryBits.push("name=" + names[i]);
}
return queryBits.join("&");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文