0

有没有办法让 Smarty在使用模板继承时将src & href属性值转换为正确的 URL

例子:

文件:web/tpl/layout.tpl

<img src="../img/logo.png" />
{block name=content}{/block}

文件:index.tpl

{extends file="web/tpl/layout"}
{block name=content} home page content here{/block}

文件:dir/index.tpl

{extends file="../web/tpl/layout"}
{block name=content} an other page content here{/block}
4

1 回答 1

1

我认为你应该定义你的基本 url 并在你的 src 和 href 中使用它:

<img src="{$baseurl}/img/logo.png" />
{block name=content}{/block}
于 2012-09-23T18:28:23.060 回答