使用 JSON 将 jQuery 对象数组传递给 PHP

发布于 2024-10-26 19:53:17 字数 748 浏览 0 评论 0原文

传递数组后如何访问 PHP 中的“code”和“type”值?
顺便说一句,我正在使用“jquery-json”插件。有没有什么方法可以在不使用任何插件的情况下做到这一点?

jQuery:

$(function(){

    function product(code, type) {

        return {
            code: code,
            type: type
        }

    }

    var products = [];

    products.push(product("333", "Product one"), product("444", "Second product"));

    var jsonProducts = $.toJSON(products); 

    $.post(
        "php/process.php",
        {products: jsonProducts},
        function(data){
            $("#result").html(data);
        }
    );


});

PHP:

<?php 

$products = json_decode($_POST["products"], true);

foreach ($products as $product){
    echo $product;
}

?>

How can I access the "code" and "type" values in PHP once I passed the array?
BTW, I'm using the "jquery-json" plugin. Is there any way to do this without any plugins?

jQuery:

$(function(){

    function product(code, type) {

        return {
            code: code,
            type: type
        }

    }

    var products = [];

    products.push(product("333", "Product one"), product("444", "Second product"));

    var jsonProducts = $.toJSON(products); 

    $.post(
        "php/process.php",
        {products: jsonProducts},
        function(data){
            $("#result").html(data);
        }
    );


});

PHP:

<?php 

$products = json_decode($_POST["products"], true);

foreach ($products as $product){
    echo $product;
}

?>

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

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

发布评论

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

评论(2

赠我空喜 2024-11-02 19:53:17

每个数组偏移量都是一个基本对象。

foreach ($products as $product)
{
    echo $product->code;
    echo $product->type;
}

我建议您重新阅读 json_decode 上的示例以获得更好的理解关于 PHP 如何将 JSON 转换为 PHP 类型

Each of your array offsets is a basic object.

foreach ($products as $product)
{
    echo $product->code;
    echo $product->type;
}

I'd suggest that you re-read the examples on json_decode to get a better understanding on how PHP translates JSON to PHP types

就像说晚安 2024-11-02 19:53:17

您应该能够在 foreach 循环中执行 $product->code$product->type

顺便说一句,如果你想打印一个数组结构来检查格式,你可以使用 print_r

You should be able to just do $product->code and $product->type in your foreach loop.

By the way, if you want to print an array structure to check the formatting, you can use print_r.

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