去评论
dz插件网

discuz X3.5本地测试调试手机版,解决复现排查各种卡BUG问题

惧愁人
2023/05/09 17:36:46
discuz X3.5本地测试调试手机版,解决复现排查各种卡BUG问题:
Q:如何解决电脑模式下,通过切换网址进入手机版?

A:解决办法:
1、打开static\js\mobile/mobile.js文件,
查找:
  1. !supporttouch && (window.location.href = 'forum.php?mobile=1');

修改为:
  1. //!supporttouch && (window.location.href = 'forum.php?mobile=1');


2、打开source/function_core.php文件,
查找:
  1. $mobile = array();

上面加:
  1. if( in_array($_GET['mobile'], array('yes', '2', '1')) ){
  2.                 $_G['mobile'] = 1;
  3.                 return '2';
  4.         }


3、恭喜你修改好了,马上测试一下吧。
http://你的域名/?mobile=1