mvc 多语言
mvc与多语言的
开发,在MVC中,他负责翻译吗? 在控制器中,在视图中,或者两者都可以?
在控制器中: $视图-> 视图中的翻译=数组(...)
: 翻译('词')
mvc with multilanguage
the development in MVC, where he is responsible for the translation?
in the controller, in the view, or it can be both?
in controller:
$view-> translate = array (...)
in view:
translate ('word')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
语言影响程序的功能或流程?不,然后在视图中。
language affects functionality or flow of program? no, then in the view.
除非您想根据语言应用不同的流程,否则只能在视图中。在我的程序中,它仅在视图中。
哈
Unless you want to apply different process based on the language tt could be in Views only. In my programs its in the view only.
hth