0

我发现图书馆nvD3-Angular看起来非常好和友好。我用它来绘制静态数据,但我希望能够读取存储在我的数据库中的数据。有没有办法通过 AJAX 使用 JQuery 使用提到的数据设置数据变量?我知道一定有办法获取这些数据,但是我还没有找到它。

我的代码如下:在我的html中:

<div ng-controller="PlotController">
    <nvd3 options="options" data="data">
    </nvd3>
</div>

在控制器中:

app.controller('PlotController', function($scope){
        /* Chart options */
        $scope.options = {
            chart: {
                type: 'cumulativeLineChart',
                height: 450,
                margin : {
                    ...
                },
            }
        };
        $scope.initData = [
            {
                key: "Cis ON",
                mean: 250,
                values: [ [ 1083297600000 , -2.974623048543] , ... , [ 1354251600000 , 349.45128876100]]
            },
            {
                key: "Cis OFF",
                mean: -60,
                values: [ [ 1083297600000 , -0.77078283705125] ,..., [ 1085976000000 , -1.8356366650335]]
            },
        ]; 
        //Chart data
        $scope.data = angular.copy($scope.initData);
}); 

作为额外信息:服务器端使用 Php Laravel 5.1 编码,使用 mysql 作为数据库。

感谢您的任何指导。

4

1 回答 1

0

在此处参考$httpangularjs 中的服务:https ://docs.angularjs.org/api/ng/service/ $http

样本:

$http({
  method: 'GET',
  url: 'your api url'
}).then(function successCallback(response) {
  // this callback will be called asynchronously
  // when the response is available
}).catch(function errorCallback(response) {
  // called asynchronously if an error occurs
  // or server returns response with an error status.
});
于 2016-04-27T16:11:54.557 回答