angularStrap:从模态打开指令并将值从范围传递到指令范围

时间:2016-04-20 00:26:32

标签: javascript angularjs angular-strap

我正在使用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'未定义。

0 个答案:

没有答案