我在angular2
中创建了一个http://plnkr.co/edit
个应用。一切都很好。我尝试导出interface
,我收到错误Uncaught SyntaxError: Unexpected token export
- 我不知道这里发生了什么错误。
任何人帮我解决这个问题。我提供的路径正确import
list-item
。
答案 0 :(得分:2)
添加
meta: { 'src/list-item.ts': { format: 'es6' }},
到您的SystemJS配置
相关答案 1 :(得分:1)
Look at this working demo - is this what you want???。
我希望现在你可以继续使用你想要的解决方案。
export class ShoppingListComponent {
listItems = new Array<ListItem>();
selectedItem = ListItem; //problem is here.
selectedItem:ListItem; // this is solution
onItemAdded(item:ListItem) {
console.log(item);
this.listItems.push({name:item.name,amount:item.amount});
}
};