使用AngularJS在html表中使用webmethod生成json

时间:2015-07-01 14:45:19

标签: html json angularjs

我是AngularJS的初学者,我的angularjs函数获取基于XML文件内容的动态json,我想在HTML表格中呈现它我在json数组中对五个元素进行了测试,并且表创建成功但没有这些元素的价值。



angular.module('myapp', []).controller('MyController', function ($scope, $http) {
       

        $scope.callMethod = function () {
            
      
            $http.post('mon-formulaire.aspx/TestMethod', {})
            .success(function (data, status, headers, config) {
                    $scope.Datas = data.d;
                   
          console.log(data);
          })
             .error(function (data, status, headers, config) {
                 //console.log("Error:", data, status, headers, config);

             });

           
        };

<tr id="elem" data-ng-repeat="dat in Datas " style="max-width:90%; color:black; resize: horizontal; cursor:auto; font-size:large">
                          
                       <td>  {{dat.Element}}  </td>                    
                       <td>  {{dat.Content}}  </td>        
                       <td>  {{dat.Children}} </td>    
</tr>                                                                                                                                                       
                </tbody>                                                              
            </table>
&#13;
&#13;
&#13;

我想要显示它们的元素。 宾语 d:对象 characterSet:Object 联系人:数组[3] 联系人:数组[3] fileIdentifier:Object language:Object

0 个答案:

没有答案