视图中的url值和iframe

时间:2012-10-17 14:49:03

标签: playframework

IDE:netbeans Playframework:v 1.2.4

从我的app / controllers / application.java

我打电话给

public static void DoSomething()
{
   render("Application/Showresult.html");
}

当我查看URL时,它表示localhost / application / process

我可以看到结果。

为什么会显示该网址?

在我的一个视图中,我有一个iframe。 iframe的src指向一个html文件,图形团队在部署到生产后可以将其放入视图文件夹中。

我是否必须将后期制作的html文件放到views文件夹中并从iframe中调用它

myview.html

<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
        <button id="click" title="click me" ></button>
        <iframe src="@{'graphicteamview.html'}">
    </body>
</html>

或者我必须告诉图形团队将他们的html放在公共文件夹中,然后再将其访问

<html>
    <head>
        <title></title>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    </head>
    <body>
        <button id="click" title="click me" ></button>
        <iframe src="@{'public/iframeHTML/somepage.html'}">
    </body>
</html>

1 个答案:

答案 0 :(得分:0)

如果是静态资源,请将其存储在公共文件夹下。