联系官方销售客服

1835022288

028-61286886

求助 版主:官方研发技术组
织梦搭建的网站,模板也转成迅睿的了,手机端图片显示不出来了
类型:迅睿CMS 更新时间:2021-12-21 10:22:44

之前织梦搭建的网站,模板使用了mip的,没有分手机端和PC端,然后都可以正常显示

现在转迅睿了,然后建的PC,模板也转成迅睿的了,然后图片显示不出来了,我把<mip-img src=""></mip-img>的代码换成<img src="" />后PC端就可以显示了,但是手机端又不能同比例缩放了

各位大佬,有什么解决办法么?

我是小白一枚,只会粗浅的一点代码!!!!!

回帖
  • #1楼    迅睿框架创始人
    2021-12-20 10:59:26
    Google Pixel 手机 0
    https://www.xunruicms.com/wenda/43619.html 往下拉,手机端图片问题
  • csmaliya
    #2楼    csmaliya
    2021-12-20 11:07:18
    Firefox 95.0 0
    回复迅睿框架创始人 没有可以解决的答案,大佬,因为我想把织梦网转到迅睿,链接不要变,所以我在迅睿里面没有建手机站的,只建PC站,然后现在使用MIP的话,就显示不出图片,不使用MIP的话,手机打开网站图片不会自动缩放
  • 云畔设计
    #3楼    云畔设计
    2021-12-20 11:08:42
    Chrome 0
    我跟你同样的情况,我用一楼提供的替换url为绝对域名就搞定了
  • LandQ
    #4楼    LandQ
    2021-12-20 11:12:47
    Chrome 0
    csmaliya 试试这样1、打开 config/custom.php 加入/** * MIP文章内容页图片适配百度MIP规范 * * @access public * @param string $content 文章内容 * @return string */if(!function_exists('mip')){ function mip($content){ preg_match_all('/<img (.*?)\>/', $content, $images); if(!is_null($images)) { foreach($images[1] as $index => $value){ $mip_img = str_replace('<img', '<mip-img', $images[0][$index]); $mip_img = str_replace('>', '></mip-img>', $mip_img); $mip_img = preg_replace('/(width|height)="\d*"\s/', '', $mip_img ); $mip_img = preg_replace('/ style=\".*?\"/', '',$mip_img); $content = str_replace($images[0][$index], $mip_img, $content); } } preg_match_all('/ style=\".*?\"/', $content, $style); if(!is_null($style)) { foreach($style[0] as $index => $value){ $mip_style = preg_replace('/ style=\".*?\"/', '',$style[0][$index]); $content = str_replace($style[0][$index], $mip_style, $content); } } $content = str_replace('/uploads/', SITE_URL.'/uploads/', $content); return $content; }}2、内容模板调用标签{$content}改成{mip($content)}
  • csmaliya
    #5楼    csmaliya
    2021-12-20 11:13:34
    Firefox 95.0 0
    云畔设计 那MIP不用去动么?只要把图片路径替换成绝对路径就可以了么?不用加手机端的模板么?
  • 云畔设计
    #6楼    云畔设计
    2021-12-20 11:14:28
    Chrome 0
    不需要去动模板,只需要替换下就行了
    满意答案
  • csmaliya
    #7楼    csmaliya
    2021-12-20 11:17:27
    Firefox 95.0 0
    LandQ 好的,我试试,感谢大佬
  • csmaliya
    #8楼    csmaliya
    2021-12-20 11:18:58
    Firefox 95.0 0

    云畔设计 好的,感谢大佬,我先试试,得重装下迅睿才行,被我改的不成样子了,汗 😭 😭 😭
  • csmaliya
    #9楼    csmaliya
    2021-12-21 10:22:44
    Firefox 95.0 0
    @云畔设计:已解决,感谢