我的 Smarty 模板中有一些 href,其中包含 rawurlencoded 字符。我怎样才能在 Smarty 中对它们进行 rawurldecocde 解码?这是帖子的小注释:
php部分:
"manufacturerName"=>rawurlencode($row["manufacturerName"])
模板部分
<a href="blablabla?brand={$_manufacturer.manufacturerName}">{$_manufacturer.manufacturerName}</a>
我尝试使用 Smarty 的 |escape 内置功能,但没有找到工作解决方案。