找了个开源基础框架测试一下微信公众号。没想是用jquery做的restful风格的页面。jquery更
新table中数据就有些麻烦。所以用angularjs重构一下。
页面中angularjs展示数据
<body ng-controller="multi">
<table id="baseTable" class="table table-striped table-bordered table-hover" >
<thead>
<tr><th style="width:10%" class="center">标题</th>
</tr>
</thead>
<body ng-controller="multi">
<tbody>
<tr ng-repeat="item in defaultData " >
<td class='center hidden-480'>{{item.title}}</td>
</tr>
</tbody>
</body>
</table>
</body>
外部jquery的ajax调用更新数据
var controllerScope = $('body[ng-controller="multi"]').scope();
controllerScope.defaultData=results;
controllerScope.$apply();
注意:外部js不要删除了下面这段代码块。
<tr ng-repeat="item in defaultData " >
<td class='center hidden-480'>{{item.title}}</td>
</tr>