我正在使用bandAngular进行模态,我在将范围传递给指令时遇到了问题。我通过互联网搜索答案,但没找到。
$scope.showModal = function(index) {
var scope = $scope.$new({productItem: "dddddd"});
var myModal = $modal({
templateUrl: "<div modal-view product='productItem' class='modal' tabindex='-1' role='dialog'></div>",
persist: true,
scope: scope,
show: false,
html: true,
animation: 'am-fade-and-scale',
placement: 'center'
});
myModal.$promise.then(myModal.show);
};
指令加载但'$ scope.product'未定义。