2016-12-15 19 views
0

はIAMをコンパイルするときのリンクです:エラーは今ここに私の最初の角2流星tutroialをやっ公式Angular2流星のチュートリアル

https://angular-meteor.com/tutorials/socially/angular2/3-way-data-binding

カピテルで4.3バインドモンゴが観測....

私コードは次のように探しています:

export class AppComponent { 

parties: Observable<any[]>; 

constructor() {  
this.parties = Parties.find({}).zone(); 

    {'name': 'Dubstep-Free Zone' 
    'description': 'Can we please just for an evening not listen to dubstep.' 
    'location': 'Palo Alto' 
    }, 
    {'name': 'All dubstep all the time' 
    'description': 'Get it on!' 
    'location': 'Palo Alto' 
    }, 
    {'name': 'Savage lounging' 
    'description': 'Leisure suit required. And only fiercest manners.' 
    'location': 'San Francisco' 
    }, 
    }; 
    } 

は今、私はローカルホストを開始するために、コンソールに行くAN私はこのエラーを取得:

01カンマが期待されている。このラインで

export class AppComponent { 

parties: Observable<any[]>; 

constructor() {  
this.parties = Parties.find({}).zone(); 

    {'name': 'Dubstep-Free Zone' 
    'description': 'Can we please just for an evening not listen to dubstep.' 

とどこかが、私はどこを知らない:11と16の間の線で

While building for web.browser: 
client/imports/app/app.component.ts:16:11: ';' expected. 

Your application has errors. Waiting for file change. 

は私のコードです。 ご協力ありがとうございます;)

答えて

0

オブジェクトの先頭がありません。私はこの行を追加しました

var something = { 

このチュートリアルではおそらく別のものが必要です。

リストを作成するときには、すべての行の最後にカンマが必要ですが、末尾にコンマは必要ありません(ただし、ES6はこれを許容します)。これがあなたのコードのようになります。

export class AppComponent { 

parties: Observable<any[]>; 

constructor() {  
this.parties = Parties.find({}).zone(); 

var something = { 
    {'name': 'Dubstep-Free Zone', 
    'description': 'Can we please just for an evening not listen to dubstep.', 
    'location': 'Palo Alto' 
    }, 
    {'name': 'All dubstep all the time', 
    'description': 'Get it on!', 
    'location': 'Palo Alto' 
    }, 
    {'name': 'Savage lounging', 
    'description': 'Leisure suit required. And only fiercest manners.', 
    'location': 'San Francisco' 
    } 
}; 
関連する問題