将 JSON 字符串传递给 $.ajax 并在 PHP 文件中访问它

发布于 2024-11-07 02:05:50 字数 1029 浏览 0 评论 0原文

我正在尝试通过 ajaxJSON 编码 字符串发送到 PHP 文件。

我尝试了这个,但 ajax 目标文件中的 $_POST 为空。

var html = $.ajax({
            type: "POST",
            url: "getControl.php",
            data:js_post_array,
            dataType: 'json',
            async: false,
            success: function (data, status)
            {
              //alert('here');
              //$("#notiDesc").text(data.msg);              
            }
         }).responseText;

js_post_array 包含 json 编码的字符串

{ 'business_name': 'test', 'business_type': 'R', 'type': '', 'total_sku_in_store': '',
 'speciality': '', 'first_name': '', 'last_name': '', 'title': '', 
 'responsible_for_wine_buying': '', 'responsible_for_events': '', 'address1': '' }

,但在 getControl.php 文件中我尝试了 print_r($_POST) 显示一个空数组。

但是,当我复制此字符串并粘贴到此处 data:js_post_array, 而不是 js_post_array 时,它就可以正常工作了。

我做错了什么?

I am trying to send JSON encoded string to PHP file through ajax.

I tried this but the $_POST is empty in the ajax target file.

var html = $.ajax({
            type: "POST",
            url: "getControl.php",
            data:js_post_array,
            dataType: 'json',
            async: false,
            success: function (data, status)
            {
              //alert('here');
              //$("#notiDesc").text(data.msg);              
            }
         }).responseText;

js_post_array contains json encoded string

{ 'business_name': 'test', 'business_type': 'R', 'type': '', 'total_sku_in_store': '',
 'speciality': '', 'first_name': '', 'last_name': '', 'title': '', 
 'responsible_for_wine_buying': '', 'responsible_for_events': '', 'address1': '' }

but in the getControl.php file I tried print_r($_POST) that shows an empty array.

But when I just copy this string and paste here data:js_post_array, instead of js_post_array then it works fine.

What I am doing wrong?

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

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

发布评论

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

评论(3

三生一梦 2024-11-14 02:05:50

对于发送部分,执行以下操作:

$.ajax({
    url: …,
    // Make sure to send data as post body
    type: 'POST',
    headers: {
        // Make sure to send as JSON
        'Content-Type': 'application/json',
    },
    // Serialize your object
    data: JSON.stringify(sampleData)
});

对于接收部分:

<?php
// Get the response body (the data is not in $_POST)
$body = file_get_contents('php://input');
print_r(
    // Convert JSON string to some PHP data structure (PHP array)
    json_decode($body)
);

请注意,

  • 问题中的 JSON 字符串无效,因为它使用撇号而不是键周围的引号
  • $_POST 只包含表单编码的数据,而不包含发送的数据作为 JSON

For the send part, do the following:

$.ajax({
    url: …,
    // Make sure to send data as post body
    type: 'POST',
    headers: {
        // Make sure to send as JSON
        'Content-Type': 'application/json',
    },
    // Serialize your object
    data: JSON.stringify(sampleData)
});

For the receiving part:

<?php
// Get the response body (the data is not in $_POST)
$body = file_get_contents('php://input');
print_r(
    // Convert JSON string to some PHP data structure (PHP array)
    json_decode($body)
);

Note that

  • The JSON string from the question is not valid since it uses apostrophes instead of quotes around the keys
  • $_POST does only contain form-encoded data, not data that was sent as JSON
祁梦 2024-11-14 02:05:50

这是因为 data 接受字符串而不是数组等其他数据类型...它只是将字符串作为 query String 附加到 url 中并发送到服务器。
因此,如果您传递一个数组,那么它不会将其分解为字符串,这就是为什么它给您空的 $_POST

it's because data accepts a string not other data type like array...it just append string as a query String in url and send to server.
So if you pass an array then it's not going to break this into string, that's why it's giving you empty $_POST

蓝色星空 2024-11-14 02:05:50

您确定 js_post_array 在该函数内可见吗?

看起来一个名为 js_post_array 的新变量在 ajax 调用中被创建为空。

尝试这样声明 js_post_array :

var js_post_array = ....;

var html = $.ajax {
...
}

Are you sure the js_post_array is visible inside that function?

It looks like a new variable named js_post_array is created empty in the ajax call.

Try to declare js_post_array this way:

var js_post_array = ....;

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