Symfony:是否可以将元素放入 link_to 标记中?
我正在使用 Symfony 1.4,想知道是否可以实现以下目标:
<a href="#"><span>Text</span></a>
...使用 Symfony 的 link_to 帮助程序?
当然,可以这样做:
<a href="<?php echo url_for('#') ?>"><span>Text</span></a>
但我想知道是否有一种更简单的方法可以做到这一点,特别是将 i18n 与上述内容结合起来会产生:
<a href="<?php echo url_for('#') ?>"><span><?php echo __('Text') ?></span></a>
... 基本上是标签汤。
谢谢。
I'm using Symfony 1.4 and wondering whether it's possible to achieve the following:
<a href="#"><span>Text</span></a>
... using Symfony's link_to helper?
Of course, it's possible to do this:
<a href="<?php echo url_for('#') ?>"><span>Text</span></a>
But I'm wondering if there's a simpler way to do it, especially as combining i18n with the above will produce:
<a href="<?php echo url_for('#') ?>"><span><?php echo __('Text') ?></span></a>
... a tag soup basically.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过两种方式做到这一点...
选项 1
选项 2
YOu can do it two ways...
Option 1
Option 2
还有:
如果您需要以这种方式扩展,我为两个 HTML 标记中的每一个添加了属性
class
作为选项。There's also:
I added the attribute
class
for each of the two HTML tags as options if you need to extend that way.