0

データベースへの PHP 接続を作成し、次のクエリを作成しました。

$taxRates = array();
while($row = mysql_fetch_assoc($result)) {
    $taxRates[] = $row['mar_tax_rate'];
}

次に、結果を次のようにエンコードしました。

$jsonobj = json_encode($taxRates, JSON_NUMERIC_CHECK);
echo "This is jsonobj:<br>" . $jsonobj . "<br>";

どちらが返されますか:

This is jsonobj:
[0,0.35,0.35,0.35,0.35,0.35,0.35,0.35,0.35]

私が抱えている問題はこれです。これらの結果を JS にエコーしようとすると、結果は (私が見る限り) 空に戻ります。空の配列ではなく、何もありません。これは、結果をJSにフィードしようとしている方法です:

data:[<?php echo $jsonobj; ?>]

どちらが返されますか:

data:

を使用してPHP変数に警告しようとしました

alert("<?php echo $jsonobj; ?>");  

これはアラートを生成しますが、空でもあります。

何かご意見は?

完全なコードは次のとおりです。

<!DOCTYPE HTML>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<script type="text/javascript" src="includes/js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="includes/js/highcharts.2.3.2.js"></script>
<script type="text/javascript" src="includes/js/highstock.src.js"></script> 

<script type="text/javascript">
$(document).ready(function() {
  drawChart();
});

function drawChart() {

alert("<?php echo join($jsonobj); ?>");
var chart = new Highcharts.Chart({
    chart: {
        renderTo: 'chart',
        type: 'column',
    },      
    credits: {
        enabled: false
    },  
    series: [{
        data:[<?php echo $jsonobj; ?>]
    }]
});
};
</script>

</head>

<body>

<button style="height:100px; width:300px;" onclick="drawChart();">Redraw the Chart</button><br />

<div id="chart"></div>

<?php 
$link = mysql_connect('url', 'username', 'password'); 
if (!$link) { 
    die('Could not connect: ' . mysql_error()); 
} 
//mysql_close($link);

$db_selected = mysql_select_db('bloch',$link); 
if (!$db_selected) {
    die ('Can\'t use Bloch Database : ' . mysql_error());
}

$result = mysql_query('SELECT mar_tax_rate from bloch.bloch_deficit');
if (!$result) {
    die('Invalid query: ' . mysql_error());
}

$taxRates = array();
while($row = mysql_fetch_assoc($result)) {
    $taxRates[] = $row['mar_tax_rate'];
}

$jsonobj = json_encode($taxRates, JSON_NUMERIC_CHECK);
echo "This is jsonobj:<br>" . $jsonobj . "<br>";
?>

</body>
</html>
4

1 に答える 1

0

変数は、HTML に入れようとする前に定義されていません。ページに正しく取得するために、HTML の前に必要なものを使用して変数を作成します。

于 2013-01-24T03:41:25.247 に答える