在Rails框架中使用AngularJS。 "纳克重复"正在工作,但是" ng-submit"不是

时间:2015-10-03 03:16:43

标签: ruby-on-rails angularjs coffeescript ng-submit

  

我的数据正在从控制器显示。 "纳克重复"在显示数据时工作正常,但是" ng-submit"没有使用以下代码向模型添加新数据:

     

pages.js.coffee

  @PagesController = ($scope) ->
   $scope.entries = [
     {name:"Larry"}
     {name:"Curly"}
     {name:"Mo"}
     {name:"Ralph"}
    ]

    $scope.addEntry = ->
     $scope.entries.push($scope.newEntry)
     $scope.newEntry = {}
  

index.html.erb

  <div ng-controller="PagesController">


    <h1>Angular & Rails</h1>

    <form ng-submit="addEntry">
      <input type="text" ng-model="newEntry.name">
      <input type="submit" value="Add">
    </form>

    <ul>
      <li ng-repeat="entry in entries">
        {{entry.name}}
      </li>
    </ul>

   </div>

1 个答案:

答案 0 :(得分:2)

函数必须执行它,因此addEntry()应该解决它。