angularjs表格用ng-model提交

时间:2016-02-10 12:59:52

标签: html controller submit

我是angularjs的新手,所以提交表单时遇到了一些困难。我可以在我的页面中将我的表单信息作为JSON获取,但是当我试图在控制台中显示它们时,没有创建任何对象。这是我的HTML的一部分。

<html lang="en" ng-app='eventApp'>
  <form class="form-inline" role="form" ng-submit='submitForm(eventForm)'>
      <input type="text" class="form-control" id="begin_freq" ng-model='eventForm.freqb'>
      <input type="text" class="form-control" id="end_freq" ng-model='eventForm.freqe'>
      <button type="submit"  class="btn btn-success">submit</button>
  <form>
<html>

这是我的控制者:

angular.module('eventApp',[])
.controller('formCntrl',function($scope){
    $scope.event=[];
    console.log($scope.event);
    $scope.submitForm= function(form) {
        $scope.event.push(form);
        console.log($scope.event);
    }
})

1 个答案:

答案 0 :(得分:0)

这是打印完整对象的方法

 for (var key in $scope.event[0])
        {
            console.log($scope.event[0][key]);
        }