私がやろうとしていることの代替ソリューションが見つかりません.jqueryにこのコードがあるとしましょう:
$.get 'file.json', (re) ->
for k, v in re
tpl = "<div>{{v.content}}</div>";
$ '#container'.append tpl
.done () ->
impress().init()
.done
は ajax の後にのみコードを実行しますが、angular には のようなものはないよう.done
でimpress().init()
、コンテンツがロードされたときに再初期化できないため、データ バインディングに誤りが生じるため、これは正常に機能します。
これが角度に関する私の試みです
App.controller 'SomeCtrl', ($scope, $http) ->
$http.get('file.json')
.success (res) ->
$scope.slides = res
#what could possibly be in here