在 renderArgs 中加载 404 和 404 的数据500 个错误
使用 Play Framework,我想知道是否可以像在其他控制器中一样在模板中加载一些变量。
我主要考虑我的“STATIC_URL”变量,它包含静态文件的路径,该路径在我的 DEV/PROD 模式之间变化。
或者至少,我可以使用哪些替代方案来实现此目的?
感谢您的帮助!
Using Play Framework, I was wondering if it was possible to load some vars in the template like I do in other controllers.
I mainly think about my "STATIC_URL" var that contains the path to the static files, that changes between my DEV/PROD modes.
Or at least, which alternatives I can use to make this works?
Thanks for your help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的问题不是很清楚,可以举一个您想要实现的目标的例子。
但是,如果我认为您的要求是正确的,请在控制器中尝试以下操作:
然后在模板中使用 ${staticUrl} 访问 renderArgs 映射中的值。
Your question is not very clear and could do with an example of what you are trying to achieve.
However if what I think you are asking is correct try the following in your controller:
Then in your template use ${staticUrl} to access the value from the renderArgs map.