1
私はPHPコントローラから、製品1,2,3などの代わりにsalescount 380、655、275などの代わりに次のようなフレーズを取得したいと思います。 jQueryで取得する方法を知らないjqueryのPHPコントローラからデータを取得する方法
Morris.Bar({
element: 'graph_bar',
data: [
{device: 'Product1', sellingcount: 380},
{device: 'Product2', sellingcount: 655},
{device: 'Product3', sellingcount: 275},
{device: 'Product4', sellingcount: 1571},
{device: 'Product5', sellingcount: 655},
{device: 'Product6', sellingcount: 2154},
{device: 'Product7', sellingcount: 1144},
{device: 'Product8', sellingcount: 2371},
{device: 'Product9', sellingcount: 1471},
{device: 'Product10', sellingcount: 1371}
],
xkey: 'device',
ykeys: ['geekbench'],
labels: ['Geekbench'],
barRatio: 0.4,
barColors: ['#26B99A', '#34495E', '#ACADAC', '#3498DB'],
xLabelAngle: 35,
hideHover: 'auto',
resize: true
});
私はphpコントローラからデータを取得したいのですが、product1,2,3など(コントローラからのデータ)とsalescount no(コントローラからのデータ)の代わりに380,655,275などのフレーズがありますが、 jqueryを使用してコントローラからデータを取得する –
データを非同期で受信するか、ビューを構築したいですか? –