コントローラからオブジェクトを返そうとしています。 私のコードは次のようになります。Angularjsのコントローラからオブジェクトを返す
score.component.js:
angular.module('score').component('score',{
templateUrl : 'app/score/score.template.html',
controller : ScoreController
});
function ScoreController() {
var f = function(){
return [{
name: "john",
totalscore: 13,
gamesPlayed: 14
},
{ name: "andrew",
totalscore: 1,
gamesPlayed: 2
}
];
}
}
score.template.html:私は間違って
<div ng-repeat="a in $ctrl.f">
{{a.name}}{{a.totalscore}}{{a.gamesPlayed}}
</div>
をしていますか? ありがとうございます!
のようなものである必要があり、あなたのコントローラでは、何を返すようにしたいですか? – lealceldeiro