2014年8月22日 星期五

angular手動產生另一個 controller.

範例

app.run(function($compile,$rootScope) { var html = '<div ng-controller="MyCtrl1">{{model.name}}</div>' var scope = $rootScope.$new(); scope.model = {name:'MyCtrl1'}; //alert(scope.model.name); var e3 = $compile(html)(scope); scope.$apply(); $('#container').append(e3[0]); });

【下列文章您可能也有興趣】

沒有留言: