最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Use window.open in a directive - Stack Overflow

programmeradmin4浏览0评论

I am trying to trigger $window.open(url, windowName, attributes); in my angular app with a ng-click

I have defined a directive and wrap window.open in a function trigger thanks to an ng-click linked to a button on my template:

myApp.directive('myModal', ['$log', function ($log, $window) {
    return {
        restrict: 'E',

        templateUrl: 'modal-tpl',

        replace: true,

        transclude: true,

        link: function (scope, window) {
            scope.openWindow = function(){
                window.open('https://myLink', 'Google', 'width=500,height=400');
               //some other code
            };
        }
    };
}]);

And in my HTML:

   <button type="submit" class="cta main right ease"ng-click="openWindow()">open window</button>

For some reason the window doesn't open when I click on the button. What's wrong with my code?

I am trying to trigger $window.open(url, windowName, attributes); in my angular app with a ng-click

I have defined a directive and wrap window.open in a function trigger thanks to an ng-click linked to a button on my template:

myApp.directive('myModal', ['$log', function ($log, $window) {
    return {
        restrict: 'E',

        templateUrl: 'modal-tpl',

        replace: true,

        transclude: true,

        link: function (scope, window) {
            scope.openWindow = function(){
                window.open('https://myLink', 'Google', 'width=500,height=400');
               //some other code
            };
        }
    };
}]);

And in my HTML:

   <button type="submit" class="cta main right ease"ng-click="openWindow()">open window</button>

For some reason the window doesn't open when I click on the button. What's wrong with my code?

Share Improve this question edited May 22, 2014 at 9:59 stealthyninja 10.4k11 gold badges54 silver badges60 bronze badges asked Mar 23, 2014 at 14:35 SpearfisherSpearfisher 8,80324 gold badges74 silver badges126 bronze badges 0
Add a ment  | 

2 Answers 2

Reset to default 5

You cannot inject window using link, you can simply use the native JavaScript window object

example:

js:

var app=angular.module('App', []);
app.directive('myModal', ['$log', function ($log) {
    return {
        restrict: 'EA',

        link: function (scope,element) {
            scope.openWindow = function(){
                window.open('https://myLink', 'Google', 'width=500,height=400');
               //some other code
            };
        }
    };
}]);

html:

<div ng-app="App"  >
 <button type="submit" my-Modal="" class="cta main right ease"ng-click="openWindow()">open window</button>
</div>

Live Example: http://jsfiddle/choroshin/crt45/1/

You should do it like this:

myApp.directive('myModal', ['$log', '$window', function ($log, $window) {
    return {
        restrict: 'E',

        templateUrl: 'modal-tpl',

        replace: true,

        transclude: true,

        link: function (scope) {
            scope.openWindow = function(){
                $window.open('https://www.google.pl', 'Google', 'width=500,height=400');
               //some other code
            };
        }
    };
}]);

the $window service is a directive dependency, it will be available inside link function.

发布评论

评论列表(0)

  1. 暂无评论