如何通过“.scaml”使用布局游戏中+游戏升级

发布于 2024-09-10 21:34:58 字数 424 浏览 4 评论 0原文

我正在使用 Play frameword 和 play-scalate 插件。

play-scalate 提供的默认演示只是“.ssp”,但我想使用的是“.scaml”。我创建了一个“default.scaml”,但我不知道如何包含内部视图。

也许我的描述不清楚,我想做的是:

将布局“main.html”翻译为“default.scaml”。

“main.html”的内容是:

<html>
    <head>
    </head>
    <body>
        #{doLayout /}
    </body>
</html>

我不知道如何翻译#{doLayout /}。提前致谢。

I'm using Play frameword and play-scalate plugin.

The default demo of play-scalate provided is only ".ssp", but what I want to use is ".scaml". I create a "default.scaml", but I don't know how to include the inner views.

Maybe my description is not clear, what I want to do is:

translate the the layout "main.html" to "default.scaml".

The content of "main.html" is:

<html>
    <head>
    </head>
    <body>
        #{doLayout /}
    </body>
</html>

I don't know how to translate #{doLayout /}. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

银河中√捞星星 2024-09-17 21:34:58

应该是:

-@ var body: String 
-@ var title: String = "Some Default Title"

%html
  %head= title
  %body
    %p hello, everyone
    != body

It should be:

-@ var body: String 
-@ var title: String = "Some Default Title"

%html
  %head= title
  %body
    %p hello, everyone
    != body
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文