0
$ scopeを渡して新しいjspページを開きたいのですが、これは最初の配列レスポンスを使用したいからです。私test.jsの 例:角度サービスを定義しないでページ間のスコープを渡す
(function() {
'use strict';
angular
.module('test', [])
.controller('TestCtrl', function($scope, $rootScope, communication, serviceRequest,$window) {
// header example
$rootScope.pageTitle = 'DEMO';
$rootScope.pageSubtitle = 'Demo';
var successCallback = function(response) {
$rootScope.loading = false;
$scope.testResponseObj = response;
$scope.testResponse = JSON.stringify(response);
$scope.testResponseSerialized = angular.fromJson(response);
$window.open("index2.jsp", '_blank','heigth=600,width=600'); // may alse try $window
};
あなたはいくつかのアドバイスがありますか?
おかげ