当前位置: 代码网 > it编程>前端脚本>Ajax > 不同场景下使用Ajax发送列表数据的实践指南

不同场景下使用Ajax发送列表数据的实践指南

2026年03月25日 Ajax 我要评论
在web开发中,经常需要将列表形式的数据(如数组、对象集合等)通过ajax发送到服务器。本文将详细介绍不同场景下如何使用ajax发送列表数据,包括原生javascript、jquery和现代fetch

在web开发中,经常需要将列表形式的数据(如数组、对象集合等)通过ajax发送到服务器。本文将详细介绍不同场景下如何使用ajax发送列表数据,包括原生javascript、jquery和现代fetch api的实现方式,并探讨常见问题及解决方案。

一、基础概念:列表数据的常见形式

在前端开发中,列表数据通常表现为以下几种形式:

  1. 简单数组[1, 2, 3, "a", "b"]
  2. 对象数组
[
  { id: 1, name: "alice" },
  { id: 2, name: "bob" }
]
  1. 嵌套结构
{
  users: [
    { id: 1, roles: ["admin", "editor"] },
    { id: 2, roles: ["viewer"] }
  ]
}

二、原生javascript发送列表数据

1. 使用xmlhttprequest发送json格式列表

const userlist = [
  { id: 1, name: "alice" },
  { id: 2, name: "bob" }
];
const xhr = new xmlhttprequest();
xhr.open('post', '/api/users/batch', true);
xhr.setrequestheader('content-type', 'application/json');
xhr.onreadystatechange = function() {
  if (xhr.readystate === 4) {
    if (xhr.status === 200) {
      console.log('批量创建成功:', json.parse(xhr.responsetext));
    } else {
      console.error('请求失败:', xhr.statustext);
    }
  }
};
xhr.send(json.stringify(userlist));

2. 发送表单格式的列表数据(application/x-www-form-urlencoded)

function listtoformdata(list) {
  const params = new urlsearchparams();
  list.foreach((item, index) => {
    params.append(`users[${index}][id]`, item.id);
    params.append(`users[${index}][name]`, item.name);
  });
  return params.tostring();
}
const userlist = [
  { id: 1, name: "alice" },
  { id: 2, name: "bob" }
];
const xhr = new xmlhttprequest();
xhr.open('post', '/api/users/batch', true);
xhr.setrequestheader('content-type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function() {
  // 处理响应...
};
xhr.send(listtoformdata(userlist));

三、jquery发送列表数据

1. 使用$.ajax发送json列表

const productlist = [
  { sku: "a001", price: 99.9 },
  { sku: "b002", price: 199.9 }
];
$.ajax({
  url: '/api/products/update',
  type: 'post',
  contenttype: 'application/json',
  data: json.stringify(productlist),
  success: function(response) {
    console.log('批量更新成功:', response);
  },
  error: function(xhr) {
    console.error('请求失败:', xhr.statustext);
  }
});

2. 使用$.post发送表单格式列表

function createformdata(list) {
  const formdata = new formdata();
  list.foreach((item, index) => {
    formdata.append(`items[${index}][sku]`, item.sku);
    formdata.append(`items[${index}][price]`, item.price);
  });
  return formdata;
}
const inventorylist = [
  { sku: "a001", price: 99.9 },
  { sku: "b002", price: 199.9 }
];
$.post('/api/inventory/batch', createformdata(inventorylist))
  .done(function(response) {
    console.log('批量入库成功:', response);
  })
  .fail(function(xhr) {
    console.error('请求失败:', xhr.statustext);
  });

四、fetch api发送列表数据

1. 发送json列表(推荐方式)

const orderlist = [
  { orderid: "ord2023001", status: "shipped" },
  { orderid: "ord2023002", status: "processing" }
];
fetch('/api/orders/batch-update', {
  method: 'post',
  headers: {
    'content-type': 'application/json',
    'authorization': 'bearer your_token_here'
  },
  body: json.stringify(orderlist)
})
  .then(response => {
    if (!response.ok) throw new error('network response was not ok');
    return response.json();
  })
  .then(data => console.log('批量更新结果:', data))
  .catch(error => console.error('请求失败:', error));

2. 发送formdata列表(适合文件上传场景)

async function uploadfileswithmetadata(filelist) {
  const formdata = new formdata();
  filelist.foreach((file, index) => {
    formdata.append(`files[${index}]`, file);
    formdata.append(`metadata[${index}][name]`, `file_${index}`);
    formdata.append(`metadata[${index}][size]`, file.size);
  });
  try {
    const response = await fetch('/api/uploads/batch', {
      method: 'post',
      body: formdata
      // 注意:使用formdata时不要手动设置content-type
      // 浏览器会自动添加正确的boundary
    });
    const result = await response.json();
    console.log('上传结果:', result);
  } catch (error) {
    console.error('上传失败:', error);
  }
}
// 使用示例
const fileinput = document.getelementbyid('fileinput');
fileinput.addeventlistener('change', (e) => {
  uploadfileswithmetadata(array.from(e.target.files));
});

五、常见问题及解决方案

1. 后端接收不到数据

问题原因

  • 请求头content-type设置不正确
  • 数据序列化格式与后端期望不符

解决方案

  • 确保json数据发送时设置:content-type: application/json
  • 表单数据发送时使用application/x-www-form-urlencodedmultipart/form-data
  • 使用开发者工具检查实际发送的请求体

2. 列表数据被截断

问题原因

  • url参数方式传输时长度限制
  • 未正确处理特殊字符

解决方案

  • 大数据量优先使用post而非get
  • 对参数进行url编码:encodeuricomponent(value)
  • 考虑使用json格式而非键值对

3. 嵌套列表结构处理

前端示例

const complexdata = {
  department: "it",
  employees: [
    { name: "alice", skills: ["js", "python"] },
    { name: "bob", skills: ["java", "sql"] }
  ]
};
// 发送方式(fetch api)
fetch('/api/department/save', {
  method: 'post',
  headers: { 'content-type': 'application/json' },
  body: json.stringify(complexdata)
});

后端处理(spring boot示例)

@postmapping("/api/department/save")
public responseentity<?> savedepartment(@requestbody departmentdto dto) {
    // dto应包含department字段和list<employeedto> employees字段
    // ...
}

六、性能优化建议

  1. 批量操作:尽量将多个单条操作合并为批量请求
  2. 压缩传输:对大json数据启用gzip压缩
  3. 分片上传:超大文件采用分片上传策略
  4. 进度监控:使用xmlhttprequest或axios的进度事件
// axios上传进度示例
axios.post('/api/upload', formdata, {
  onuploadprogress: progressevent => {
    const percent = math.round((progressevent.loaded * 100) / progressevent.total);
    console.log(`上传进度: ${percent}%`);
  }
});

七、不同框架的封装方案

1. vue.js中的封装

// utils/request.js
import axios from 'axios';
export function postlist(url, data) {
  return axios.post(url, data, {
    headers: { 'content-type': 'application/json' }
  });
}
// 组件中使用
import { postlist } from '@/utils/request';
export default {
  methods: {
    async submitorders() {
      const orders = [
        { id: 1, qty: 2 },
        { id: 2, qty: 1 }
      ];
      try {
        const response = await postlist('/api/orders/batch', orders);
        // 处理响应...
      } catch (error) {
        console.error('提交失败:', error);
      }
    }
  }
}

2. react中的封装

// api/batchapi.js
export const updateproductsbatch = async (products) => {
  const response = await fetch('/api/products/batch', {
    method: 'put',
    headers: {
      'content-type': 'application/json',
    },
    body: json.stringify(products)
  });
  return response.json();
};
// 组件中使用
import { updateproductsbatch } from './api/batchapi';
function productlist() {
  const handlebatchupdate = async () => {
    const products = [
      { id: 101, price: 19.99 },
      { id: 102, price: 29.99 }
    ];
    try {
      const result = await updateproductsbatch(products);
      console.log('更新结果:', result);
    } catch (error) {
      console.error('更新失败:', error);
    }
  };
  return (
    <button onclick={handlebatchupdate}>批量更新价格</button>
  );
}

总结

发送列表数据是web开发中的常见需求,选择合适的方法需要考虑:

  1. 数据量大小
  2. 是否需要传输文件
  3. 后端api设计
  4. 项目技术栈

对于现代项目,推荐优先使用fetch api或axios发送json格式的列表数据,它们提供了简洁的语法和良好的错误处理机制。在需要兼容旧浏览器或处理复杂表单上传时,xmlhttprequest仍然是可靠的选择。无论采用哪种方式,始终确保正确设置请求头并验证后端接收的数据结构。

以上就是不同场景下使用ajax发送列表数据的实践指南的详细内容,更多关于使用ajax发送列表数据的资料请关注代码网其它相关文章!

(0)

相关文章:

版权声明:本文内容由互联网用户贡献,该文观点仅代表作者本人。本站仅提供信息存储服务,不拥有所有权,不承担相关法律责任。 如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 2386932994@qq.com 举报,一经查实将立刻删除。

发表评论

验证码:
Copyright © 2017-2026  代码网 保留所有权利. 粤ICP备2024248653号
站长QQ:2386932994 | 联系邮箱:2386932994@qq.com