多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
# apicloud在chrome下进行手机上调试 >注:iphone手机不知道能不能这样调试 ## 一:《apicloud - chromeDebug》 http://docs.apicloud.com/Client-API/Func-Ext/chromeDebug ## 二:《APICloud平台上,chromeDebug模块的使用手册》 https://github.com/bringmehome/chromeDebug ## 三:《小米5如何开启开者选项及USB调试》 注:在win10上不用安装驱动!我的不安装就可以在 chrome上打开 `chrome://inspect/#devices` 也就是说在win10上这步可以忽略! http://jingyan.baidu.com/article/c74d6000965c340f6a595da1.html 如果小米手机,建议下载《小米手机助手PC端》注:android6目前不支持 ## 四:《图文详解小米手机驱动安装》 注:这个网址包含驱动安装包 http://www.xiaomi.cn/content-19-6735-1.html 1、打开chrome,输入chrome://inspect/#devices,就能看到制作的网页 方法: ``` var chromedebug = null; apiready = function() { chromedebug = api.require('chromeDebug'); openchromelog(); }; function openchromelog() { chromedebug.openDebug(function(ret, err) { if (212 == ret.code) { alert(JSON.stringify(ret)); } else { console.log(ret); } }); } ``` # 几篇文章 《JS调试必备的5个debug技巧》 http://www.jb51.net/article/47812.htm (一) cnblog介绍的小米5调试方法,非常详细 https://www.cnblogs.com/imwtr/archive/2016/09/18/5881039.html#top (二)小米5手机打开调试模式 https://jingyan.baidu.com/article/ceb9fb10895a948cad2ba0bb.html