AngularJS从表中收集数据 - 解析为JSON

时间:2016-01-13 14:21:06

标签: javascript angularjs json

我如何能够从表中收集所有数据然后将其解析为JSON,然后我可以将其写入属性文件?

HTML

<table class="table">
    <thead>
        <tr>
            <th>Key</th>
            <th>Value</th>
        </tr>
    </thead>
    <tbody>
        <tr ng-repeat="(key, value) in configResources">
            <td>{{key}}</td>
            <td><input type="text" value={{value}}></td>
        </tr>
    </tbody>
</table>

<button class="btn btn-primary" ng-click="changeProp()"></button>

JS

$scope.changeProp(){
    //collect data then parse as JSON
};

2 个答案:

答案 0 :(得分:2)

将您的value={{value}}切换为ng-model="value",这样您的数据会在您更改值时自动更新,而当您想要将其转换为angular.toJson($scope.configResources)时,您应该能够调用 string cblvalues = ""; foreach (ListItem cbitem in lstUsers.Items) { if (cbitem.Selected) { cblvalues += cbitem.Value + "-"; } } cblvalues = cblvalues.Trim('-'); Response.Redirect("Results.aspx?cblvalues=" + cblvalues); JSON。

答案 1 :(得分:0)

开关

<input type="text" value={{value}}>

<input type="text" ng-model="value" />

然后,执行以下操作:

$scope.changeProp(){
     var myJson = angular.toJson($scope.configResources);
};