我有控制器’reportCtrl’和HTML代表6表数据和只有几行我一次显示.
app.js
var appReport = angular.module('myAppReport',[]); appReport.config(['$routeProvider',function($routeProvider) { $routeProvider.when('/showreport',{templateUrl: 'app/reports/reportsView.html',controller: 'reportCtrl'}); $routeProvider.when('/showreport/:type',controller: 'reportCtrl'});
每个表有一个按钮,点击后,应在浏览器中打开新的标签,扩展表:
scope.onClick = function(path){ var real_path = $location.path() + '/' + path + '/'; $location.path( real_path ); // $window.open($location.path()); // doesn't work };
例如我有根视图URL:
http://dev.test.com/reports/date/#/showreport
现在,按下按钮后,我想创建:
http://dev.test.com/reports/date/#/showreport/table_name
并在新选项卡中打开它.如你所见,我尝试过$window.open($location.path());但它不起作用,没有任何反应.
谢谢,
你正在打开一个新的窗口,使用另一个可以让Angular混淆的功能.
原文链接:https://www.f2er.com/angularjs/143124.html尝试传递$window.open(real_path)中的字符串,其中real_path是一个包含要导航的路径的字符串