angularjs - using a decimal in my element's name -
angularjs - using a decimal in my element's name -
i'm trying utilize two-way info binding value of input i'm having problem using "." in input name:
<form name="signinform"> <label class="item item-input item-stacked-label"> <input name="user.email" data-ng-model="user.email" type="email" placeholder="user@email.net"> </label> </form> {{ signinform.user.email }}
how value out?
as commented: need use:
{{user.email}}
instead of
{{ signinform.user.email }}
angularjs
Comments
Post a Comment