使用类型脚本控制器填充网格
Fill Grid Using Type Script Controller
我已经使用 typescript 和 angular js 实现了一个控制器并获取数据作为响应,但是当我尝试将该数据与我的 grid.I 绑定时出现了一些问题已经使用 ng-转发器。
我已在 html 页面上声明我的控制器为:-
ng-controller="CustomerCtrl as custom"
我正尝试在我的控制器中访问它:-
ng-repeat="cust in custom.cust_File
比
Full Name: {{cust.Name}}
不知道具体问题出在哪里...
我通过在 custom.$scope.cust_File 中使用 cust 解决了这个问题,如@hugues Stefanski 所述。
非常感谢....
我已经使用 typescript 和 angular js 实现了一个控制器并获取数据作为响应,但是当我尝试将该数据与我的 grid.I 绑定时出现了一些问题已经使用 ng-转发器。
我已在 html 页面上声明我的控制器为:-
ng-controller="CustomerCtrl as custom"
我正尝试在我的控制器中访问它:-
ng-repeat="cust in custom.cust_File
比
Full Name: {{cust.Name}}
不知道具体问题出在哪里...
我通过在 custom.$scope.cust_File 中使用 cust 解决了这个问题,如@hugues Stefanski 所述。 非常感谢....