如何使用 javascript 或 jquery 以编程方式生成 JSON 格式数据
假设有 gridivew,每行有三个文本框,分别为员工姓名、员工年龄和员工部门名称。有 10 行或可能更多。因此用户可以输入 10 个员工数据。我将使用 PageMethod,它将接受我将从客户端发送的员工信息。
因此,当用户输入许多员工记录并单击提交按钮时,我如何生成 json 格式数据并发送到服务器端函数。任何人都可以通过代码片段的帮助来展示它吗?基本上我需要将复杂的数据从客户端发送到服务器端方法。谢谢
suppose there is gridivew and every row has three textbox for employee name, employee age and employee department name. there are 10 rows or could be more. so user can enter 10 employee data. i will use PageMethod which will accept that will accept the employee info which i will send from client side.
so when user will enter many employee record and click submit button then how can i generate json format data and send to server side function. can any one like to show it with the help of code snippet. basically i need to send complex data from client side to server side method. thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用表单和 jQuery 的
.serializeArray()
函数构建相当复杂的对象。这是 API 中指向它的快速链接。http://jqapi.com/#p=serializeArray
You can build a fairly complex object using forms and jQuery's
.serializeArray()
function. Here is a quick link to it in the API.http://jqapi.com/#p=serializeArray