找到include
的文件extend.func.php
function replaceurl($newurl)
{
$newurl=str_replace('src="/uploads/','src="'.$GLOBALS['cfg_basehost'].'/uploads/',$newurl);
return $newurl;
}
然后在详情页调用时候标签{dede:field.body/}
修改成{dede:field.body function='replaceurl(@me)'/}
倘若提示跨域问题
在请求页面头部加上下面这段代码即可
<meta http-equiv="Access-Control-Allow-Origin" content="*">
网友评论