React.js iframe src

时间:2017-07-17 04:11:38

标签: reactjs iframe

index.js

<div id="root"></div>

的index.html

<html>

<head></head>

<body>
    <h1>Inside IFrame</h1>
</body>

</html>

target.html上

{{1}}

问题是这样的:

enter image description here

代码有什么问题?

1 个答案:

答案 0 :(得分:1)

您收到此问题是因为相对网址src="./target.html"不正确。要确保使用正确的网址,请单独检查为index.html和target.html生成的网址。还要确保您没有输入拼写错误。

我尝试运行您的代码,如果您的target.html和index.html网址如下所示,它可以正常运行:

target.html

index.html

我也可以重新创建您的问题,如果我在我的代码中输入拼写错误,如src="./typoerror.html"

Typo error case