각도 응용 프로그램을 작성 중입니다. 세션 관리를 위해 나는 OpenID Connect 세션 관리를 사용하고 있으며 iframe을 주입하려고합니다. 나는iframe in index.html 각도 2/4
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title> Application </title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<iframe src="./session.html" id="rp_session_iframe" width="0"
height="0"></iframe>
<div id="app-loader" class="app-loader"></div>
<app-root></app-root>
</body>
</html>
로 된 index.html에서 iframe이와 (index.html을 같은 위치)에 session.html의 내용을 포함
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iFrame RP Page</title>
<script>
window.onload = function()
{
window.parent.alert('iframesomething');
}
</script>
</head>
<body>
</body>
</html>
처럼 보이는해야하지만 난 어떤을 볼 수 아니다 내 화면에 경고. 난 내 소스를 oberserve 경우 그리고 난 내가 뭘 잘못
처럼 보이는 iframe을의 재귀 주사를 볼 수 있습니까? 도와주세요.
예,하지만 구성 요소에없는 경우 어디에서 위생 처리가됩니까? html은 iframe을 추가하려고하는데 루트 index.html입니다. –