gpt4 book ai didi

javascript - 如何将 php 中的 json 数据解析为 jQuery

转载 作者:行者123 更新时间:2023-12-02 17:47:59 25 4
gpt4 key购买 nike

我有一个curl语句将json格式的数组拉到php。然后我想将此数组传输到 jQuery,以便客户端保存该数组。我目前正在使用以下方法:

<script>var obj = jQuery.parseJSON( <?php echo var_dump($json_short); ?> );</script>

客户看到类似的内容:

<script>var obj = jQuery.parseJSON( array(1) {
["search"]=>
array(50) {
[0]=>
array(6) {
["id"]=>
string(6) "641279"
["description"]=>
string(36) "Instyle - Responsive Portfolio Theme"
["url"]=>
string(69) "http://themeforest.net/item/instyle-responsive-portfolio-theme/641279"
["type"]=>
string(9) "wordpress"
["sales"]=>
string(3) "135"
["rating"]=>
string(3) "4.5"
}
....
}
}
);</script>

obj 现在会保存数组吗?这是正确的方法吗,因为我收到错误:

Uncaught SyntaxError: Unexpected token { 

最佳答案

PHP有json_encode函数已经存在,你应该使用它。

看起来像:

<script>
var a = <?php echo json_encode($json_short); ?>;

</script>

关于javascript - 如何将 php 中的 json 数据解析为 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21606524/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com