如何通过javascript代码在客户端浏览器中发出一个请求而不是十几个请求?
当用户想要保存信息时,在我的网络应用程序中。我根据要求记录了所有事情。我如何可以提出请求而不是全部。
例如他们添加 5 件事
,然后请求每件事的信息:名称、他们的财产、有关他们放置的东西的其他一些信息。
我如何发送一个请求。
每件事都有一些信息,例如
guid
image_align Left
image_loc true
ordId 1
postId 337
text <p> testing is another great things.</p>
in my web application when user want to save the information. i record the all thing by a request. how i can make request instead of all.
information like they add 5 things
then request for every thing : name, their property, some other thing about the thing they put.
how i can send one request.
the every thing have some information like
guid
image_align Left
image_loc true
ordId 1
postId 337
text <p> testing is another great things.</p>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将收集到的所有信息放入一个对象中,将其序列化并将其发送到您的服务器。
像这样:
然后,在您实现发送之后,您的服务器将以平面 JSON 形式接收数据。
You could put all the information you gathered in an object, serialise it and send it to your server.
Like this:
Then, after you implement send, your server will recieve the data as flat JSON.