我有一些 json 附加到页面上的数据属性。json数据用于在angularjs中建表。我正在使用咖啡脚本和haml。
app = angular.module("myApp", [])
app.controller "TableCtrl", ($scope) ->
$scope.table = $("#mydata").data("myjson")
#table{"ng-app"=>"myApp","ng-controller" =>"TableCtrl"}
%table
%tbody
%tr{"ng-repeat"=>"(i,item) in table" }}"}
%td {{item.name}}
该页面将数据加载到表中。在页面的其他地方,用户可以使用 jquery 更改数据属性上的 json。如何在 json 数据和表之间进行 2 路绑定?即我希望表在数据属性上的json在本地更改时更改。