我需要在Angular 2中使用父窗口传递子窗口我很无能为力,如何使用 window.opener 将参数传递给angular 2。
在角度1.5中我使用了像Accessing parent
这样的东西在Javascript中是这样的
父窗口
<!DOCTYPE html>
<html>
<body>
<h1 id="demo">parent</h1>
<script>
function parentFunction(myVar) {
document.getElementById("demo").innerHTML = myVar;
}
</script>
</body>
</html>
子窗口
<!DOCTYPE HTML>
<html>
<head>
<title>fuente de múltiples elementos</title>
</head>
<body>
<button onclick="window.opener.homeFunction('passVariable')">Click me</button>
</body>
</html>
答案 0 :(得分:0)
这是一个很好的答案https://stackoverflow.com/a/39280942/1904479。详细说明如何在角度2中实现这一点。公开展示一个组合方法,以便从不同的来源访问。