如何使用 Symfony2 轻松实现从右到左的文本方向
我的问题就在标题里。您能帮我实现从右到左文本方向的更好解决方案吗?
My question is in the title. Can you help me to implement better solution for right-to-left text direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
例如,您可以制作类似这样的东西
,这是一种方法。这样你就可以将所有语言数据放在一个地方,你可以通过调用 getLanguageURL 轻松地在 yoururl/en/yourroute 中获取 en,并且以同样的方式,你可以在控制器中使用适当的 _local 调用 getLanguageRTL 并传递给 twig,以便如果 R2L true 那么 dir=rtl 你可以这样做。
您甚至可以创建一个 twig 扩展来从 twig 调用 getLanguageRTL,但既然控制器是做所有“肮脏工作”的地方,为什么还要麻烦呢。
此致
For example, you can make something like this
So, this is one way to go. This way you can have all your language data in one place, you can easily get en in yoururl/en/yourroute by calling getLanguageURL, and in same maner you can call getLanguageRTL in your controller with a proper _local and pass in to twig so that you could do if R2L true then dir=rtl.
You can even make a twig extension to call getLanguageRTL from twig but since controller is the place to do all "dirty works", why bother.
Best regards