2016-07-28 4 views
-6

角度成分に何が問題なのですか?角度成分に何が問題なのですか?

enter image description here

+1

コンポーネントは機能ではありませんか?宣言の 'function()'部分を削除してください。 – Claies

+2

コードの代わりにほぼ900の担当者が画像を投稿しています... – csmckelvey

+0

あなたの文法があなたの構文が無効であることを伝えていても – charlietfl

答えて

4

第二の引数は、オブジェクトリテラルであるべきです。例を参照してくださいhttps://docs.angularjs.org/guide/component

angular.module('heroApp').component('heroDetail', { 
    templateUrl: 'heroDetail.html', 
    controller: HeroDetailController, 
    bindings: { 
    hero: '=' 
    } 
}); 
+0

なぜオブジェクトリテラルを外部定義できないのでしょうか? .component( 'foo'、foo)のように。 var foo = {} ' –

+0

var foo = {}は.component( 'foo'、foo)の前に最初に置かなければなりません。 – doge1ord

関連する問題