如何使用 AngularJS 将来自 html 输入标签的数据绑定到 javascript 对象?

How do you bind data from an html input tag to a javascript object using AngularJS?

我刚开始使用 AngularJS,所以我不太确定实现目标的最佳方法是什么。我想要做的是在我的 hmtl 中有一个带有 type=number 的输入标签网格,并设置它以便每当值增加时,一个新对象就会附加到列表中。同样,当它递减时(它不能低于 0),该类型的对象将从列表中删除。

使用此代码,每当我增加输入框时,该更改都会显示在底部的 {{}} 中。但是,我不清楚我实际绑定的是什么。我不知道如何在用户递增输入框时创建一个新的 foo1 对象。

这是我的代码:

var app = angular.module('FooTools', ['ionic'])

app.run(function($ionicPlatform) {
  $ionicPlatform.ready(function() {
    if(window.cordova && window.cordova.plugins.Keyboard) {
      cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);
    }
    if(window.StatusBar) {
      StatusBar.styleDefault();
    }
  });


})

app.controller('fooCtrl', function($scope) {
 //I want to bind foo objects to these lists
    $scope.foo1 = [];
 $scope.foo2 = [];
});
<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
 <title></title>

 <link href="lib/ionic/css/ionic.css" rel="stylesheet">
 <link href="css/style.css" rel="stylesheet">

<!-- IF using Sass (run gulp sass first), then uncomment below and remove the CSS includes above
<link href="css/ionic.app.css" rel="stylesheet">
-->

<!-- ionic/angularjs js -->
 <script src="lib/ionic/js/ionic.bundle.js"></script>

<!-- cordova script (this will be a 404 during development) -->
 <script src="cordova.js"></script>

    <!-- your app's js -->
 <script src="js/app.js"></script>
 <script src="js/foo.js"></script>
</head>

<body ng-app="FooTools">
 <ion-pane>
  <ion-header-bar class="bar-positive">
   <h1 class="title"><b>Foo Tools</b></h1>
  </ion-header-bar>
  <ion-content>
   <div class="main-div">
    <div ng-controller="fooCtrl"><br>
     <div class="row">
      <div class="col">
       Column 1:
      </div>
      <div class="col">
       Column 2:
      </div>
     </div>
     <div class="row">
      <div class="col">
       <label class="item-input">
        object1:&nbsp;  <input type="number" ng-model="foo1"><br>
       </label>
      </div>
      <div class="col">
       <label class="item-input">
        object2:&nbsp;  <input type="number" ng-model="foo2"><br>
       </label>
      </div>
     </div>
     Foo: {{foo1 + " foo1, " + foo2 + " foo2"}}
    </div>
   </div>
  </ion-content>
 </ion-pane>
</body>
</html>

此外,如果有帮助的话,这是我的 foo1 对象构造函数:

function unit(value) {
this.value = value;
}

有谁知道如何做到这一点或对如何实现这一点有更好的想法? (并不是说这有什么不同,但这是一个 Ionic 项目。)

我不确定我是否完全理解您要在这里完成的任务,但请尝试以下修复(基于我目前的理解):

//in your DOM
<label class="item-input">
    object1:     <input type="number" ng-model="data.foo1">
                     <button ng-click="addToList(data.foo1)"> + </button>
                     <button ng-click="removeFromList(data.foo1)"> - </button>
</label>

//in your controller
//initialize data
$scope.data=[{foo1:0, foo2:0}];
//func to add obj to list when the value incremented
$scope.addToList = function (obj){
     $scope.data.foo1 ++;
     $scope.foo1List.push(obj);//add to your foo1 list
}
$scope.removeFromList = function (obj){
     $scope.data.foo1 --;
     // you can use $scope.foo1List.splice to remove from your array list
}

希望对您有所帮助!

如何将 "ng-change" 绑定到输入?例如:

<input type="number" ng-change="checkValues("foo1", fooN1)" ng-model="fooN1">
<input type="number" ng-change="checkValues("foo2", fooN2)" ng-model="fooN2">

在你的控制器里

$scope.checkValues = function (a, b) {
  if (a in $scope) {
    if ($scope[a].length < b) { // If length is smaller that the number
      $scope[a].push({}); //Adds the new object to the array
    } else {
      //Removes the last element of the array
      $scope[a].pop();
    }
  }
}

希望对您有所帮助