下面是我的 HTML 和执行 Web 服务调用并在 ngGrid 中显示数据的代码。问题在于路由提供程序,我无法在单独的视图中显示网格,但是如果我在没有路由提供程序的情况下执行完全相同的代码,并且只加载该页面,它就可以正常工作。
由于我对 angularJS 很陌生,任何建议都将不胜感激。我做了很多研究,但没有奏效,至少对我来说。如果我在某处错过了相关帖子,请考虑这一点。提前谢谢!
<div>
<!--Placeholder for views-->
<div ng-view=""></div>
</div>
//this is what I have in one of my view for grid.
<div class="gridStyle" data-ng-grid="gridOptions">
</div>
/* display/get/call the JSON data from the web service and bind it to the view */
var app = angular.module('salesApp',['ngGrid']);
app.config (['$routeProvider', function ($routeProvider){
$routeProvider
.when('/sales',
{
controller:'salesCtrl',
templateUrl:'Partials/sales.html'
})
.when('/associate',
{
controller:'assocCtrl',
templateUrl:'Partials/associate.html'
})
.otherwise({redirectTo:'/sales'});
}]);
app.controller('salesCtrl', function($scope, $http) {
$http.jsonp('http://some url...')
.success(function (data) {
$scope.sales = data;
});
$scope.gridOptions = {data: 'sales',
columnDefs:[{field:'Region_Num', displayName: 'Region Num'}
],
showGroupPanel: true
};
});