离子:来自模板的popover>如何动态传递param URL?

时间:2015-01-09 14:34:57

标签: angularjs ionic-framework ionic

我有以下代码:

$ionicPopover.fromTemplateUrl('templates/popover_available_sounds.html', {
            scope: $scope,
        }).then(function(popover) {
            $scope.popover = popover;
        });

        // Display Popover
        $scope.openPopover = function($event) {
            $scope.popover.show($event);
        };

        $scope.closePopover = function() {
            $scope.popover.hide();
        };

使用以下方法从视图中调用:

<button ng-click="openPopover($event)"  
class="button button-icon icon ion-plus-circled"></button>

所以我无法将模板的URL作为参数传递。

我该怎么办?

感谢您的任何建议。

1 个答案:

答案 0 :(得分:6)

我使用以下代码修改解决了它:

  // Display Popover
        $scope.openPopover = function($event, templateName) {
            // Init popover on load
            $ionicPopover.fromTemplateUrl('templates/'+templateName, {
                scope: $scope,
            }).then(function(popover) {
                $scope.popover = popover;
                $scope.popover.show($event);
            });
        };

        $scope.closePopover = function() {
            $scope.popover.hide();
        };