如何通过javascript代码在客户端浏览器中发出一个请求而不是十几个请求?

发布于 2024-12-10 04:47:55 字数 316 浏览 0 评论 0原文

当用户想要保存信息时,在我的网络应用程序中。我根据要求记录了所有事情。我如何可以提出请求而不是全部。

例如他们添加 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

挖个坑埋了你 2024-12-17 04:47:55

您可以将收集到的所有信息放入一个对象中,将其序列化并将其发送到您的服务器。

像这样:

var data = {
 'GUID' : 'guid',
 'image_align' : 'left',
 'image_loc' : true
};

send(JSON.stringify(data));

然后,在您实现发送之后,您的服务器将以平面 JSON 形式接收数据。

You could put all the information you gathered in an object, serialise it and send it to your server.

Like this:

var data = {
 'GUID' : 'guid',
 'image_align' : 'left',
 'image_loc' : true
};

send(JSON.stringify(data));

Then, after you implement send, your server will recieve the data as flat JSON.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文