2017-10-04 7 views
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 
     }; 

あなたはいくつかのアドバイスがありますか?

おかげ

答えて

0
var $yourFile = $window.open("index2.jsp","_blank","width=250,height=100,left=10,top=150"); 

$yourFile.response = response; 

とあなたの子供のコントローラで:

var response = $window.response; 
関連する問題