我有一個返回對象數組的ajax請求,我需要將它們返回到另一頁進行打印。但我不知道如何將這個對象數組傳遞給另一個選項卡或頁面。JS - 將對象數組傳遞到新窗口
$.ajax({
type: "POST",
url: "atualizeOrder",
data: JSON.stringify(ordens),
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(list) {
console.log(list);
var printWindow = window.open('/erp/index/test');
printWindow.document.write(list);
printWindow.addEventListener('load', function(){
printWindow.print();
printWindow.close();
}, true);
}
});
什麼是你的代碼目前呢? – 4castle
用這個返回一個新窗口:[object Object] – scooby
嘗試使用'printWindow.document.write(JSON.stringify(list));' – 4castle