gpt4 book ai didi

javascript - 如何通过 JustGage 使用 JSON 对象中的变量

转载 作者:行者123 更新时间:2023-12-03 07:23:09 24 4
gpt4 key购买 nike

我快疯了,希望有人能帮忙。我有一个数组,我正在使用 getJson 函数通过 Jquery 访问该数组。

我试图弄清楚如何访问和使用 json 对象中的变量。我想通过名为 justgage 的 javascript 插件使用变量。 。

这是我在 my_url.php 上的数组

  <?php

$my_data=array(min=>"100",max=>"200", total=>"50");

// sending output
header('Content-Type: text/json');
echo json_encode($my_data,true);
?>

这是我获取数组的代码

<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("my_url.php",function(result){
$.each(result, function(key, value){
$("#showdata").append(key+value);
});
});
});
});
</script>

这给了我

min100max200total50

我想知道如何将此数据放入下面的 justgage 脚本所需的变量中?

<script>

var g = new JustGage({
id: "gauge",
value: total,
min: 0,
max: 100,
title: "Sample Data"
});
</script>

最佳答案

<script>
$(document).ready(function(){
$("button").click(function(){
$.getJSON("my_url.php",function(result){
var g = new JustGage({
id: "gauge",
value: result.total,
min: result.min,
max: result.max,
title: "Sample Data"
});
});
});
});
</script>

关于javascript - 如何通过 JustGage 使用 JSON 对象中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36116825/

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