连接 Ajax 序列化数据
我有一个带有输入字段的表单,用户可以在其中输入数据。我使用 Ajax 发送它,并且希望每个字段都发送到 concat.
一个值。所以如果用户引入测试。可见的结果应该是 为 www.google.com/test
。 这是我的代码:
<form>
<input type="text" id="test" name="test">
</form>
Ajax
$(document).ready(function() {
if ($("#formid").length) {
$("#formid").submit(function(event) {
var form = $(this);
var url = form.attr('action');
$.ajax({
type: "POST",
url: url,
data: form.serialize(),
//success...
当我执行 ...data: form.serialize() + '&test=' + testtest,
时,它只会添加另一个值到 id 测试
。 我该如何进行连接?
I have a form with a input field where users introduces data. I use Ajax to send it and I want for every field to send to concat.
a value. So if the user introduce test. The visible result should
be www.google.com/test
.
This is my code:
<form>
<input type="text" id="test" name="test">
</form>
Ajax
$(document).ready(function() {
if ($("#formid").length) {
$("#formid").submit(function(event) {
var form = $(this);
var url = form.attr('action');
$.ajax({
type: "POST",
url: url,
data: form.serialize(),
//success...
And when I doo ...data: form.serialize() + '&test=' + testtest,
it will just add another value to the id test
.
How can I do the concat?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您确定您的用户使用现代浏览器,您可以使用 FormData API 修改内容,然后使用 URLSearchParams API 对其进行序列化,例如:
编辑:匹配键列表但不是所有键的示例:
编辑:处理对于表单中出现重复键的情况,我们不能明确使用
.get
和.set
方法,而是应该将数据追加到新的表单数据中,例如:If you are sure your users have modern browsers, you can use FormData API to modify the contents, then use URLSearchParams API to serialize it, for example:
Edit: an example to match a list of keys but not all keys:
Edit: To handle the case of duplicate keys in forms, we can't unambiguously use
.get
and.set
methods, instead we should append the data to a new form data, for example: