我使用的是三星 Galaxy s2 版本 2.3.3,我在 android 默认网络浏览器中打开一个网页。
在页面中,我将 console.log("some info") 用于调试页面,但我无法在我的设备中看到 console.log 输出。请帮助我。提前致谢。
我使用的是三星 Galaxy s2 版本 2.3.3,我在 android 默认网络浏览器中打开一个网页。
在页面中,我将 console.log("some info") 用于调试页面,但我无法在我的设备中看到 console.log 输出。请帮助我。提前致谢。
该解决方案似乎不再起作用,因为多年来没有维护 Web 工具。
尝试使用JSConsole.com。它是 JavaScript 的远程调试器。该设置基本上只是<script>
在您的页面中注入一个标签。连接后,您可以console.log
从 JSConsole 上的远程页面读取所有调用,以及在客户端执行命令。
:listen
.<script src="http://jsconsole.com/remote.js?..."></script>
.console.log
呼叫都将转发到 JSConsole.com 窗口。远程调试页面上有更多详细信息以及一些有用的视频。
我们可以通过两种方式查看 console.log 消息
方法一:
在 REmote 中使用 WEINRE 远程 WEB Inspector。它是一个 nodejs 包。安装 WINERE 的步骤。
npm install -g weinre
(对于 MAC sudo npm install -g weinre
)weinre --boundHost -all- --httpPort 8082
,这里 8082 是启动 WINERE 的端口号。<script
src="http://xx.xx.xx.xx:8082/target/target-script-min.js#weinredemo"></script>
xx.xx.xx.xx
是你机器的IP。weinredemo
是您页面的 ID,您可以使用我们自己的任何 ID。http://localhost:8082/client/#weinredemo
方法二: