ngTemplateOutlet:无法分配给引用或变量

时间:2017-05-02 13:52:28

标签: angular nativescript angular2-nativescript

使用ngTemplateOutlet和context:

<ng-container *ngTemplateOutlet="template; context: Context"></ng-container>

上下文数据:

this.Context = {
        $implicit: this.userName,
        'password': this.password,
        'Login': this.Login,
        'Register': this.Register
    };

不能绑定到双向绑定,这是一个限制还是我做错了什么?

<ng-template let-username #loginpage> 
<TextField class="input" hint="Email" keyboardType="email" [(ngModel)]="username"></TextField> 
</ng-template>

我收到此错误:

  

ns-renderer:无法分配给引用或变量!

0 个答案:

没有答案