小编典典

播放Framework @ routes.Assets.at编译错误

java

我正在使用Play 2.4.0,并且一直在尝试遵循主页上的教程:https
//playframework.com/,适用于Play 2.3,并解决了一些有关Ebean ORM中的更改的问题从2.3版到2.4版,我遇到了以下错误:

Compilation error

value at is not a member of controllers.ReverseAssets

我的index.scala.html

@(message: String)

@main("Welcome to Play") {

    <script type='text/javascript' src="@routes.Assets.at("javascripts/index.js")"></script>

    <form action="@routes.Application.addPerson()" method="post">
        <input type="text" name="name" />
        <button>Add Person</button>
    </form>

    <ul id="persons">
    </ul>
}

而我的routes文件:

# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

# Home page
GET         /                    controllers.Application.index()

POST        /person              controllers.Application.addPerson()

GET         /persons             controllers.Application.getPersons()

# Map static resources from the /public folder to the /assets URL path
GET         /assets/*file        controllers.Assets.versioned(path="/public", file: Asset)

我有相同的示例可以正常使用Play 2.3.9

在2.4.0的文档中,我看不到任何与使用公共资产有关的内容:https
:
//www.playframework.com/documentation/2.4.0/Assets

所以…任何帮助将不胜感激。


阅读 225

收藏
2020-12-03

共1个答案

小编典典

好了,总结一下解决方案:Play让您以两种不同的方式服务资产。sbt-web引入了老式和新的指纹方法。无论哪种情况,请确保在视图文件中使用正确的调用:

指纹资产

建议使用这种方式来提供资产。指纹资产使用积极的缓存策略。您可以在此处阅读有关此主题的更多信息:https
:
//playframework.com/documentation/2.4.x/Assets

路由配置:

GET     /assets/*file               controllers.Assets.versioned(path="/public", file: Asset)

确保的类型file显示为Asset

调用视图:

@routes.Assets.versioned("an_asset")

老式资产

这基本上是引入sbt-web之前使用的方法。

路由配置:

GET     /assets/*file               controllers.Assets.at(path="/public", file)

调用视图:

@routes.Assets.at("an_asset")
2020-12-03