使用ng-repeat,ng-form和ng-submit后如何提交

时间:2015-06-09 11:40:32

标签: javascript angularjs node.js forms

我正在使用一些数据来获取图书清单,如下所示: -

1 1001 - 500 - 戒指之王参考(InputBox)备注(InputBox)SubmitBox

2 1002 - 570 - 哈利波特参考(InputBox)备注(InputBox)SubmitBox

3 1003 - 720 - Davinci代码参考(InputBox)备注(InputBox)SubmitBox

我可以使用以下代码获得上述代码。但是,我不知道如何将数据保存到另一个数据库,如果有人可以指导我,我将不胜感激。

这是我的HTML代码: -

    <form name="Bookentry" ng-submit="save()">

        <div  ng-repeat="lists in list.Books | orderBy: ['numB','numB1' ]">

            <ng-form name="item">

                {{$index+1}}

                <input type="checkbox" ng-click="delete(lists._id)">{{lists.numB}} - {{lists.numB1}} - {{lists.bookname}}
                <input type="text" name="Reference" ng-model="lists.Reference" ng-maxlength="8" ng-minlength="1"></input>
                <input type="text" name="Remarks" ng-model="lists.Remarks" ng-maxlength="8" ng-minlength="1"></input>
                <button type="submit">Save</button>
            </ng-form>
        </div>          
    </form>

我的core.js代码是: -

$scope.save = function(){
    $http.post('/api/save',$scope.Bookentry)
        .success(function(data){
            $scope.list = {};
            $scope.list.Books = data;
        })
        .error(function(data){
            console.log('Error: ' + data);
        });
};

我的app.js是:

app.post('/api/save', function(req,res){

  dbBooks.create({
    numB: req.body.numB,
    numB1: req.body.numB1,
    name: req.body.bookname,
    Reference: req.body.Reference,
    remarks: req.body.remarks,
    done: false
  }, function(err,result){
    if (err)
        res.send(err);
    dbBooks.find(function(err,result){
        if (err)
            res.send(err)
        res.json(result)
    });
  });
});

1 个答案:

答案 0 :(得分:0)

您可以将列表模型作为参数传递给保存功能。 HTML代码:

Truncate

核心js:

<form name="Bookentry" ng-submit="save(lists)">