如何为ng-model赋值?

时间:2018-12-29 13:51:36

标签: angularjs

这是控制器代码:

    $scope.FormData.Quantity = $scope.sum();

这是HTML代码:

<input type="text" name="FormData.Quantity" ng-model="FormData.Quantity" />

显示空白文本框。如何分配?

1 个答案:

答案 0 :(得分:0)

您已将函数分配给ng-model,可能不会返回任何内容,请尝试执行此操作...

 $scope.FormData = {};
 $scope.sum =  function(){
    return "whatever";
 };
 $scope.FormData.Quantity = $scope.sum();