使用表单 POST json 数据
我需要将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请参阅 jquery 的
load()
或更好的 (post()
如果您不需要向您正在处理的页面加载任何内容) 用 POST 传递 json 对象如果你不知道如何将字符串/数组转换为 json,使用 phps
json_encode
< /a>示例:
这样,
$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 POSTIf you don't know how to convert a string/array to json, use phps
json_encode
Example:
That way the
$string
gets loaded automatically when the page is loaded (if user has javascript turned on).