如何使用AngularJS数据表按钮重定向?

时间:2017-08-14 18:49:20

标签: angularjs angular-datatables

我正在尝试使用angularjs数据表按钮从一个页面重定向到另一个页面。我正在调用一个包含重定向网址的函数。该函数被成功调用,但重定向不起作用。我正在使用$location.path重定向。我是以正确的方式做到这一点还是有其他一些方法来重定向使用数据表按钮?

   .withButtons([
   {
        text: 'Next Page',
        key: '1',
        action: function (e, dt, node, config) 
            {
               $scope.redirect();
            }
    }]);

    $scope.redirect=function() 
    {
       $location.path('/next_page');
    };

0 个答案:

没有答案