很抱歉,如果它重复,但我找不到解决方案。
我有以下内容:
appDrct.directive('jsonArray', [function () {
return {
link: function (scope, element, attrs, ctrl) {
console.log(scope.$parent.categories);
}
};
}]);
这给了我一个空数组(类别不为空)。如果我打印这个:console.log(scope.$parent);
,我可以看到里面有项目的数组!这是为什么?我怎样才能得到我的阵列?
编辑: 这是一种模态视图......
div(class="modal-header")
div(json-array='categories')