我对使用 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: <input type="number" ng-model="foo1"><br>
</label>
</div>
<div class="col">
<label class="item-input">
object2: <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 项目。)