播放框架 @routes.Assets.at 编译错误

我正在使用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

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


答案 1

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

指纹资产

这是在游戏中为资产提供服务的推荐方式。指纹资产利用积极的缓存策略。您可以在此处阅读有关此主题的更多信息:https://playframework.com/documentation/2.4.x/Assets

路由配置:

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

确保 的类型指示为fileAsset

调用视图:

@routes.Assets.versioned("an_asset")


老式资产

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

路由配置:

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

调用视图:

@routes.Assets.at("an_asset")

答案 2

推荐