我的代码中有什么错误? <{1}}和cust.name
未显示。
为什么没有创建列表项?
cust.city
答案 0 :(得分:0)
HTML中需要ng-app
部分,即使是空的也足够了。此外,您需要以不同方式创建控制器:
var myApp = angular.module('myApp',[]);
myApp.controller('SimpleController', ['$scope', function($scope) {
$scope.customers = [
{
name: 'Rishabh Shrivas',
city: 'New Delhi'
},
{
name: 'Rishabh Bharadawaj',
city: 'Noida'
},
{
name: 'Rishabh Sen',
city: 'Gurgaon'
}
];
}]);