|
@@ -98,7 +98,9 @@
|
|
|
window.addEventListener('message', function(e) {
|
|
|
//e.data ==> 수신 받은 데이터
|
|
|
//e.origin ==> 허용된 도메인
|
|
|
- console.log(JSON.parse(decoding(e.data)))
|
|
|
+ const req = JSON.parse(decoding(e.data))
|
|
|
+ console.log(req)
|
|
|
+ console.log(JSON.parse(decoding(req['PrintingJson'])))
|
|
|
});
|
|
|
|
|
|
function decoding(encoded){
|