LoginSignup
1
1

More than 5 years have passed since last update.

angularjsでフォーム部品名がjavascriptの変数名にならない時の指定方法

Posted at

タグのnameにカッコとか入ってると、変数名に直接出来ない。

<div ng-controller="LoginController as Login">
<form action="/login" id="loginForm" name="loginForm" method="post" novalidate>

  <input type="text" id="loginId" name="form[loginId]" placeholder="Login ID"
    required="true" ng-model="Login.loginId" value="" autofocus/>

  <input type="password" id="loginPwd" name="form[loginPwd]"
    placeholder="password" required="true" ng-model="Login.loginPwd" value=""/>

  <button type="button"ng-click="Login.doLogin()">Sign in</button>

</form>
</div>

上記の場合、こんな風にはかけないので、

$scope.loginForm.form[loginId].$valid

こう書く。

$scope.loginForm['form[loginId]'].$valid
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1