代码是:
async login() {
const res = await api.getLoginResult();
const status = res.status;
console.log('log' + status);
if(status === 'success') {
Actions.HomeScreen(); // Note the parens ()
}
}
我在表单中添加了手机号码字段,需要填写,不应该是空的,需要填写。不填写它,不应该移动到下一步..我应该改变什么在上面的代码中根据需要制作字段??
在给定的代码中{!! Form::input('number', 'mobile', null, array('required' => 'required', 'type' => 'number', 'min' => 0, 'id' => 'mobile', 'class' => 'input-lg form-control TabOnEnter', 'placeholder' => 'Eg: 9876543210', 'tabindex' => 15)) !!}
无效..