我试图在一个完整的视图中使用全局变量,但无法做到。
initialize : function(){
this.callParent();
this.nameValue=0;
if(name="ram")
this.nameValue=1;
console.log("Test 1 -"+this.nameValue);
}else {
this.nameValue=0;
console.log("Test 2 -"+this.nameValue);
}
}
这将是访问值表单按钮点击,如下所示:
onSubmitButtonTap: function () {
console.log("Button Tap Here");
console.log("Test Def-6-"+this.nameValue);
}
但我无法访问它,它总是显示 0。我给了输入 ram,然后它也给了我 0。为什么这样。全局变量无法正常工作。