我想从php控制器检索以下短语代替产品1,2,3等,而sellcount没有380,655,275等,但我不知道如何使用jQuery检索
SELECT ID,FIELD from TABLE
1|A
1|B
1|C
1|D
2|X
2|Y
2|Z
答案 0 :(得分:2)
您可以将代码更改为以下解决方案。
var data_graph_bar = [
<?php
if (!empty($graph)) {
foreach ($graph as $graph_val) { ?>
{device: "<?= $graph_val['device'] ?>", sellingcount: <?= $graph_val['sellingcount'] ?>},
<?php }
} ?>
];
Morris.Bar({
element: 'graph_bar',
data: data_graph_bar,
xkey: 'device',
ykeys: ['geekbench'],
labels: ['Geekbench'],
barRatio: 0.4,
barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
xLabelAngle: 35,
hideHover: 'auto',
resize: true
});
注意:您可以在Controller端创建键值数组。
我希望这会对你有所帮助。谢谢!