google appengine中iframe的问题
index.html:
...
<iframe name="frmname" id="frmid" src="9-3.html"></iframe>
...
index.html,9-3.html都在根目录下,index.html映射到localhost:8080;发现iframe部分的9-3.html无法访问;
但如果在app.yaml中把9-3.html设置到某static_dir下,则可以访问iframe内容。
是否,iframe的src只能引用静态内容?而我的应用需要9-3.html单独刷新,显示从template数据,那么该如何解决呢?请教各位,谢谢