JavaScript 数组
假设我的数组中有一堆名字,我想将这些数据发布到我网站上的另一个网址,但发布数据将是“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 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.
您可以将数组中的每个元素映射到前面带有
name=
的同一元素,然后使用&
字符将它们连接起来。如果您需要支持
Array
上没有map
方法的浏览器(需要 JS 1.6),您可以从 MDC 或仅使用for
循环。You can map every element in the array to the same thing with
name=
prepended, and then join them with the&
character.If you need to support browsers that don't have the
map
method onArray
(it requires JS 1.6), you can pinch it from the MDC or just use afor
loop instead.