我使用 Meteor 进入 Ionic2 项目。
在我的组件中,我使用declare let Meteor;
声明 Meteor 。
之后,我可以在源代码中使用Meteor.user();
来获取用户。
但我无法在我的html代码*ngIf="Meteor.userId()
或{{Meteor.user().username}}
中使用相同内容。
我收到错误Cannot read property 'userId' of undefined
。
有人能告诉我如何在html-source中访问 Meteor 吗?谢谢
答案 0 :(得分:0)
...
declare let Meteor;
export class NewMyPage {
M = Meteor;
...
...
之后,我可以在我的html-source中使用*ngIf="M.userId()
或{{M.user().username}}
。