0

我正在关注在线播放框架教程,但路由有一些问题

GET  /                  controllers.Application.index()`

我对此没有任何问题,因为它并不复杂。但是当我看到以下内容时,它变得复杂了

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

我因为那Assets.at(path="/public", file) 部分而感到困惑。这两个路由有什么区别?

4

1 回答 1

2

一切都在HTTP routing doc中进行了描述,都routes指向actionsfirst 不带任何参数,这很清楚。

第二个有两个参数:pathis parameter with fixed value(according to the doc) 和fileis (doc again) dynamic part spanning several /

提示:创建用于学习目的的小项目并使用不同类型的参数( 、 等)测试路由fixeddefault获得spanning更多经验 - 理解路由非常重要。

于 2013-04-19T07:09:33.523 回答