HTML:
$scope.refreshSection = function ($event) {
ajaxService.getData("/home/index", "")
.then(function (data) {
$scope.section= data;
});
}
我有iframe将项目添加到列表中。添加项后,我需要从脚本动态刷新此部分。
SCRIPT:
function refresh(){
//other stuffs
var sectionScope = angular.element(document.getElementById("items")).scope();
sectionScope.refreshSection();
}
执行此行时,我将sectionScope
定义为未定义,因为document.getElementById("items")
为空。
为什么我没有得到这个价值?