LoginSignup
5
5

More than 5 years have passed since last update.

AngularJSの1.3.0以降の ng-true-value 利用時の注意

Posted at

checkbox で使用する ng-true-value が 1.2.8 までは以下でOKだったが・・・

1.2.8
<input type="checkbox" ng-model="status.complete" ng-true-value="yes" ng-false-value="no"/>

1.3.0 以降は、以下のように値をシングルコーテーションで囲わないとエラーになるので要注意。

1.3.0
<input type="checkbox" ng-model="status.complete" ng-true-value="'yes'" ng-false-value="'no'"/>
5
5
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
5
5