AngularJS将输入值添加到$ scope

时间:2014-03-19 21:58:50

标签: angularjs angularjs-directive angularjs-scope

<input id="width" name="width" style="width:100px" type="text" ng-model="width">

如果没有默认值,我如何从上面获取值以写入$scope.user.width下的$ scope?

1 个答案:

答案 0 :(得分:4)

您需要在html中使用user.width

<input id="width" name="width" style="width:100px" type="text" ng-model="user.width">

这假设您的controller构造如下:

$scope.user = {
    width: '',
    height: '',
}

您甚至可以在其中设置默认值,而不是仅将其设置为空字符串。