您好,我對前端開發非常陌生,我試圖將一些數據從我的父窗口傳遞到我的子窗口,但它只是以[object] [object]從父窗口傳遞數據到子窗口
JS
$scope.openLargeGraph = function() {
var childWindow = window.open('graphs.html', "", "width=950,height=850");
var testData = $scope.data;
childWindow.data = testData;
childWindow.document.write(childWindow.data);
console.log(testData)
console.log(childWindow.data);
// childWindowForGraph.moveTo(300, 50);
};
打開單頁應用程序(SPA)中的子窗口最多是不常見的。考慮使用類似於ui bootstrap模式的模式(https://angular-ui.github.io/bootstrap/),因爲它與AngularJS的mvc模式一致。 – jbrown
你可以把數據放在'localStorage'然後在孩子讀取它 –