現在、私はAngularJSコンポーネントを学んでいます。私は親コンポーネントの値は、RESTfulなサービスによって返されることを知って、親コンポーネントと子コンポーネント間の値をバインドしたいと思います:約1.5+ネストされたコンポーネントバインディング約束により返された値
parent.template.html
<h3>{{$ctrl.hero.name}}</h3>
<child hero="$ctrl.hero"></child>
parent.component.js
angular.module('myApp')
.component('parent', {
templateUrl:'parent/parent.template.html',
controller: ['MyService','$routeParams', parentController]
});
function parentController(MyService, $routeParams) {
var self = this;
MyService.get({ heroId: $routeParams.heroId })
.$promise
.then(function (data) {
self.hero = data;
console.log("self.hero:" + self.hero); //this will log the hero correctly.
});
console.log("self.hero.name"+ self.hero.name) // this will log "undefined"
};
child.template.html
<div>{{$ctrl.hero.name}}</div>
child.component.js
angular.module('myApp')
.component('child', {
templateUrl:'child/child.template.html',
controller: childController,
bingdings: {
hero:'='
},
transclude:true
});
function childController() {
var self = this;
console.log("child hero: " + self.hero); // this will output "undefined"
};
私は子コンポーネントが原因「英雄」はで返されているという事実に親コンポーネントから「英雄」を得ることができなかったと仮定$約束。
このような値をバインドする方法はありますか?
ありがとうございました!
よろしく、この場合、 レオナ
@ raina77ow私はあなたに正しい答えを与えるでしょう... これは、 "バインディング"の綴りが原因です... ありがとう... – Leona
将来この投稿を見るユーザーのために: いつものように$ promiseが返す値をバインドできます。できない場合は、スペルを二重にチェックしてください... – Leona