如何在 JustGage 中使用 JSON 对象中的变量
How to use variables within a JSON object with JustGage
我快疯了,希望有人能帮忙。我有一个数组,我正在使用 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>
我快疯了,希望有人能帮忙。我有一个数组,我正在使用 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>