gpt4 book ai didi

php - 将变量从 PHP 传递到 JavaScript

转载 作者:行者123 更新时间:2023-11-30 13:22:41 25 4
gpt4 key购买 nike

<分区>

我正在使用 JSON 字符串从 PHP 传递 JavaScript 中的变量:

while( $row = mysql_fetch_array($result) )
{
$tmp = array('id'=>$row['id'], 'alert_type_id'=>$row['alert_type_id'], 'deviation'=>$row['deviation'], 'threshold_low'=>$row['threshold_low'], 'threshold_high'=>$row['threshold_high']) ;
$settings[] = $tmp ;
}

echo '{"data":'.json_encode($settings).'}' ;

在 Javascript 中,我使用以下代码片段:

console.log( result ) ;                
var json = eval('('+ result +')') ;

控制台中出现以下错误:

1{"data":[{"id":"1","alert_type_id":"1","deviation":null,"threshold_low":"20","threshold_high":"80"}]}

SyntaxError: Expected token ')'

你能帮我解决这个问题吗?非常感谢。

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