我想将通过数据库查询检索到的编码 JSON 数据加载到 Angular-nvD3 图中,但我不知道该怎么做或哪种方式最适合完成此类任务。
我使用 api 从数据库(表 PRODUCTS)中检索编码的 JSON 数据。我已经成功地将这些数据加载到表中,并$http
请求(加载到工厂)到给定的 api。数据作为对象保存到工厂中的字典中,并带有$http
对 api 的请求(位于服务中)。
表格样本(表格产品):
身份证件
1 100
2 275
工厂样品:
.factory('services', ['$http', function($http){
var serviceBase = 'services/'
var object = {};
object.getData = function(){
return $http.get(serviceBase + 'data');
};
return object;
}]);
将数据显示到表格中的控制器示例(ng-repeat="data in get_data"
视图中带有“”):
.controller('TablesCtrl', ['$scope', 'services', function($scope, services) {
services.getData().then(function(data){
$scope.get_data = data.data;
});
}]);
数据格式示例:
[{"0":"1","1":"100","ID":"1","STOCK":"100"},{"0":"2","1":"275","ID":"2","STOCK":"275"}]
饼图 - 这是我要添加的脚本类型的示例(来自THIS存储库):
'use strict';
angular.module('mainApp.controllers')
.controller('pieChartCtrl', function($scope){
$scope.options = {
chart: {
type: 'pieChart',
height: 500,
x: function(d){return d.key;},
y: function(d){return d.y;},
showLabels: true,
duration: 500,
labelThreshold: 0.01,
labelSunbeamLayout: true,
legend: {
margin: {
top: 5,
right: 35,
bottom: 5,
left: 0
}
}
}
};
$scope.data = [
{
key: "One",
y: 5
},
{
key: "Two",
y: 2
},
{
key: "Three",
y: 9
},
{
key: "Four",
y: 7
},
{
key: "Five",
y: 4
},
{
key: "Six",
y: 3
},
{
key: "Seven",
y: .5
}
];
});
HTML:
<div ng-app="myApp">
<div ng-controller="pieChartCtrl">
<nvd3 options="options" data="data"></nvd3>
</div>
</div>
我的问题是:如何将这些检索到的编码 JSON 数据加载到 Angular-nvD3 图中,而不是手动将数据输入到 Angular-nvD3 图中$scope.data
?
非常感谢!