/** * @param {Array} $params smarty-function的参数列表,具体参数如下: * * @p-config {String} location 地址跳转,类似Javascript中的location.href="xxx";此参数优先级最高 * * @p-config {String} refresh N秒后自动重定向到url参数指定的页面 * @p-config {String} url 需要被自动跳转的地址 * * @p-config {String} contentType contentType的简写,默认是:html;可选值有:html,js,javascript,json,xml,css,text * @p-config {String} charset 指定返回内容的字符集,默认是UTF-8;如:UTF-8,GBK等 */
{%http_header location="/home"%}
{%http_header refresh="5"%} {%http_header refresh="5" url="http://www.baidufe.com"%}
{%http_header contentType="javascript"%} {%http_header charset="GBK"%} {%http_header contentType="json" charset="UTF-8"%}