使用表单 POST json 数据

发布于 2024-12-11 20:19:26 字数 304 浏览 0 评论 0原文

我需要将 JSON 数据传递到服务器。数据看起来像这样:

{"method":"like","data":{"type":1,"id":123}}

我需要它自动完成,如果我使用表单,可以像这样完成:

<script>
jQuery(document).ready(function(){
jQuery("#form").submit();
});
</script>

但我需要使用 $_POST 以确切的格式传递数据。这怎么能做到呢?

I need to pass JSON data to a server. Data looks like this:

{"method":"like","data":{"type":1,"id":123}}

I need it to be done automaticaly, if I would use a form it can be done like this:

<script>
jQuery(document).ready(function(){
jQuery("#form").submit();
});
</script>

But I need to pass data using $_POST in that exact format. How can this be done?

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

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

发布评论

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

评论(1

美羊羊 2024-12-18 20:19:26

请参阅 jquery 的 load() 或更好的 (post() 如果您不需要向您正在处理的页面加载任何内容) 用 POST 传递 json 对象

如果你不知道如何将字符串/数组转换为 json,使用 phps json_encode< /a>

示例:

$(document).ready(function(){
    $.post("script.php", { <?php echo $string; ?> },
       function() {
         alert("Your test.php page received the string!);
       });
});

这样,$string 会在页面加载时自动加载(如果用户打开了 javascript)。

see jquery's load() or better (post() if you don't need to load anything to the page you're working on) to pass the json object with POST

If you don't know how to convert a string/array to json, use phps json_encode

Example:

$(document).ready(function(){
    $.post("script.php", { <?php echo $string; ?> },
       function() {
         alert("Your test.php page received the string!);
       });
});

That way the $string gets loaded automatically when the page is loaded (if user has javascript turned on).

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