标签: nativescript angular2-nativescript
我已经按照教程在Nativescript / Angular中创建数据输入表单。但是,控制台不会触发控制台日志,而是告诉我希望打印的属性未定义。
在下面的操场上采样。服务和appSettings存储功能已删除。
https://play.nativescript.org/?template=play-ng&id=6mEiJz
答案 0 :(得分:1)
错误出在console.log()中,您需要使用this
this
因此,您的日志行应为console.log("Logging in as ", this.name);,因为它引用的是组件的属性,在本例中为this。
console.log("Logging in as ", this.name);