无法在表单中添加所需的输入

时间:2017-02-01 12:21:38

标签: php jquery laravel

代码是:

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)) !!} 无效..

0 个答案:

没有答案