var state= this.options.form.getWidgetByName("state"); var username = this.options.form.getWidgetByName("username").getValue(); if (!username){ state.setValue(2); }else{ state.setValue(1); }
该段代码是用来对state参数置数,当username为空时,!username为真,此时将state置数为2,否则当username有值时,将state置数为1。
您可能感兴趣的文章: