jQuery Ajax 维护 POST Html 表示法

发布于 2024-10-16 02:11:30 字数 160 浏览 4 评论 0原文

是否可以使用 Ajax Post 维护 Php post 表示法。例如,如果我使用 HTML 表单进行标准发布并使用 var_export $_POST 数据,我可以看到任何数组数据的结构。我想在使用 Ajax Post 时保持这一点,我尝试使用 jQuery 序列化和序列化数组,但它们不保持相同的格式。

Is it possible to maintain the Php post notation using a Ajax Post. For example, if I do a standard post using a HTML form and var_export the $_POST data I can see the structure of any array data. I'd like to maintain this when using a Ajax Post, I've tried using jQuery serialise and serialiseArray but these don't maintain the same format.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

满意归宿 2024-10-23 02:11:30

这应该像一个魅力一样起作用:

$.post("test.php", $("#form").serialize(),
   function(data){
     alert(data);
});

This should work like a charm:

$.post("test.php", $("#form").serialize(),
   function(data){
     alert(data);
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文