在一篇歪国人的博文中,偶然发现weinre这个词。而后就与他结下了不解之缘。html
weinre是远程web调试器,能够调试web页面。若是你用过FF的FireBug和chrome的调试工具对它那会有熟悉的即视感。weinre也是Codova项目的一份子,因此用它来调试ionic开发的app最合适不过了。node
1.这种方法须要你先安装好node,Windows的安装方法网上太多,自行查找,这里有一篇我本身在ubuntu14.04下安装node的记录。web
2.确认node已安装,npm能使用以后,就可用使用npm命令安装weinre:chrome
npm -g install weinre@latest//这是安装最新版,若是须要安装其余版本将@符号后的latest替换成相应版本号便可
若是不加版本号会安装失败apache
npm ERR! Windows_NT 6.1.7601 npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs \\node_modules\\npm\\bin\\npm-cli.js" "install" "weinre" npm ERR! node v0.12.7 npm ERR! npm v2.11.3 npm ERR! code ETARGET npm ERR! notarget No compatible version found: weinre@'*' npm ERR! notarget Valid install targets: npm ERR! notarget ["2.0.0-pre-H0WTHDO5-incubating","2.0.0-pre-H1GCS73N-incubatin g","2.0.0-pre-H3FWTQKQ-incubating","2.0.0-pre-H41DGW8S-incubating","2.0.0-pre-H8 EOSCLN-incubating","2.0.0-pre-H9PU2WST-incubating","2.0.0-pre-HA5N9T49","2.0.0-p re-HG9PLCRF","2.0.0-pre-HH0SN197","2.0.0-pre-HYFXM3QM","2.0.0-pre-HZ79PDUK","2.0 .0-pre-HZO3BMNG","2.0.0-pre-I0Z7U9OV"] npm ERR! notarget npm ERR! notarget This is most likely not a problem with npm itself. npm ERR! notarget In most cases you or one of your dependencies are requesting npm ERR! notarget a package version that doesn't exist. npm ERR! Please include the following file with any support request: npm ERR! C:\Users\Administrator.ZHANGZIJUAN1\npm-debug.log
3.全局安装好以后能够在C:\Users\Administrator\AppData\Roaming\npm\node_modules看到安装的weinre,进入到web目录查看一下npm
4.启动咱们的调试端ubuntu
weinre --httpPort 8080 --boundHost -all-
更多选项看这里http://people.apache.org/~pmuellr/weinre/docs/latest/Running.html浏览器
5.在浏览器地址栏中输入http://localhost:8080/client/ 打开调试端的界面服务器
6.在目标页面中引入target-script-min.js文件,ionic项目的目标页面就是index.htmlapp
由于个人这个项目没有放在weinre服务器下,因此在引入这个文件的时候就不能使用localhost,而要改用本机的ip地址
7.再从新编译这个项目,启动模拟器,或者在你手机上安装也行。打开这个项目以后再查看在第五步打开的调试端
若是你在多个设备上安装了这个apk,那么targets这里就会出现多个连接,绿色的就是如今能够调试的
切换到Elements,以下图,鼠标指针移动到哪一个标签上面,在移动设备中就能够查看到。如此熟悉的界面,下面不用我说我想你也知道应该怎么作了吧