AngularJS:将数据发送到数据库

时间:2016-01-19 20:06:28

标签: javascript angularjs database angularjs-scope

我对angular很新,目前我在多个表中都有一些统计信息要发送到我的数据库。我像这样显示表格的信息:

的index.html

<table>
    <tr ng-repeat="complete in completed track by $index">
        <td>{{complete[0]}}</td>
        <td>{{complete[1]}}</td>
    </tr>

<table class="wrapper text-center">
    <tr ng-repeat="board in boards track by $index">
        <td>{{board[0]}}</td>
        <td>{{board[1]}}</td>
        <td>{{board[2]}}</td> 
        <td>{{board[3]}}</td> 
    </tr>
</table>

<table class="wrapper text-center">
    <tr ng-repeat="cell_line in cell_lines track by $index">
        <td >
            {{cell_line[0]}}
        </td>
        <td >
            {{cell_line[1]}}
        </td>
    </tr>
</table>

我希望能够将$scope.completed$scope.boards$scope.cell_lines中存储的数据发送到函数,但是一旦我退出{{{},这些变量就超出了范围1}}。

ng-repeat

问题:有没有办法从表外发送这些数据?

0 个答案:

没有答案