在Ionic2 / Angular2 html中引用Meteor.user()

时间:2016-12-07 21:35:41

标签: meteor ionic-framework ionic2

我使用 Meteor 进入 Ionic2 项目。

在我的组件中,我使用declare let Meteor;声明 Meteor

之后,我可以在源代码中使用Meteor.user();来获取用户。

但我无法在我的html代码*ngIf="Meteor.userId(){{Meteor.user().username}}中使用相同内容。

我收到错误Cannot read property 'userId' of undefined

有人能告诉我如何在html-source中访问 Meteor 吗?谢谢

1 个答案:

答案 0 :(得分:0)

...
declare let Meteor;

export class NewMyPage {
   M = Meteor;
...
...

之后,我可以在我的html-source中使用*ngIf="M.userId(){{M.user().username}}