1

我有一个表单,将数据提交到一个名为ng-submit="newBirthday()this pushes data 的函数中 - $scope.bdayname, $scope.bdaydate;到一个名为bdaes

我的问题是,在我看到的所有教程中,数组都有预定义的数据,有没有办法让它成为一个在提交时填充数据的空数组?

应用程序.js:

var app = angular.module('birthdayToDo', []);

app.controller('main', function($scope){ 

    // Start as not visible but when button is tapped it will show as true 

        $scope.visible = false;

    // Create the array to hold the list of Birthdays

        $scope.bdays = [{}];

    // Create the function to push the data into the "bdays" array

    $scope.newBirthday = function(){

        $scope.bdays.push({name:$scope.bdayname, date:$scope.bdaydate});

        $scope.bdayname = '';
        $scope.bdaydate = '';

    }
});

HTML:

<body ng-app="birthdayToDo" ng-controller="main">
    <div id="wrap">

      <!-- Begin page content -->
      <div class="container">
        <div class="page-header">
          <h1>Birthday Reminders</h1>
        </div>
            <ul ng-repeat="bdays in bdays">
                <li>{{bdae.name}} | {{bdae.date}}</li>
            </ul>

           <form ng-show="visible" ng-submit="newBirthday()">
            <label>Name:</label>
            <input type="text" ng-model="bdayname" placeholder="Name"/>
            <label>Date:</label>
            <input type="date" ng-model="bdaydate" placeholder="Date"/>
            <button class="btn" type="submit">Save</button>
        </form>
      </div>

      <div id="push"></div>
    </div>

    <div id="footer">
      <div class="container">
        <a class="btn" ng-click="visible = true"><i class="icon-plus"></i>Add</a>
      </div>
    </div>
        <script type="text/javascript" src="js/cordova-2.5.0.js"></script>
        <script type="text/javascript">
            app.initialize();
        </script>
    </body>
4

1 回答 1

12

好的,有一些小问题。

  1. 空数组必须没有项目;[{}]是一个包含一项的数组:一个空对象。更改为[]摆脱了多余的子弹。
  2. 更大的问题是您的 ngRepeat。你用过ng-repeat="bdays in bdays"。ngRepeat 所做的是获取一个数组并允许您对数组执行“for each”,将每个值分配给该临时局部变量。你给他们起同样的名字。相反,ng-repeat="bday in bdays"将为 中的每个项目添加其内部的 DOM 节点bdays,为您提供一个局部变量bday,用于引用每个项目。
  3. 在 ngRepeat 模板中,您使用了bdae,它没有引用任何内容。
  4. 我不知道是什么app.initialize(),所以我删除了它。它只是在控制台中出错。

这是一个固定的 Plunker:http ://plnkr.co/edit/OFWY7o?p=preview

于 2013-03-16T18:25:30.423 回答