我使用Android(非root用户)手机进行Web开发,并寻找一种显示浏览器(Chrome或Firefox)控制台消息的方法。 Android Chrome和Firefox都没有Web检查器/控制台,而且我没有找到Firefox(有效)加载项。
更新:我无法将手机连接到计算机(ADB,Chrome远程工具...不可用)。
有人能提示我可行的解决方案吗?
答案 0 :(得分:2)
尝试https://github.com/liriliri/eruda,非常接近开发工具。
您需要做的就是在页面顶部添加以下代码段:
<script src="//cdn.jsdelivr.net/npm/eruda"></script>
<script>eruda.init();</script>
答案 1 :(得分:0)
我没有找到解决问题的“正当工作”解决方案,因此我做了一个简短的工具,可以将日志和错误从浏览器发送到后端服务器。
它在Proxy对象周围使用window.console,并实现功能window.onerror,以将消息发布到服务器。
我对代码进行了结构化,以将其用作expressjs中间件,以实现可重用性。 它不是完美的,可能与 所有浏览器,但如果浏览器中没有开发工具,那确实有帮助。
任何人都可以通过repl.it对其进行测试。
// Use this module as middleware with expressjs compatible server:
//
// In the server:
// consoleWrapperMiddleware(basePath, app)
// basePath: URL path to send browser messages
// app: expressjs application reference
// return: nothing
//
// In the html page:
// <script src="basePath" />
// basePath: URL path to send browser messages
function consoleWrapper(oldConsole, oldOnerror, serverUrl) {
function _post(log) {
const req = new XMLHttpRequest()
req.open('POST', serverUrl, true)
req.setRequestHeader('Content-Type', 'application/json')
req.send(JSON.stringify(log))
}
const console = new Proxy(oldConsole, {
get: (target, propKey, receiver) => {
const origMethod = target[propKey]
return function (...args) {
if (origMethod === undefined) {
const message = 'unknown console method: '+propKey
_post({ level: 'wrap', message: [message]})
return message
}
else {
let result = origMethod.apply(this, args)
_post({ level: origMethod.name, message: args })
return result
}
}
}
})
const onerror = function(msg, url, line, col) {
if (typeof oldOnerror === 'function')
oldOnerror(arguments)
const content = [ msg, url+':'+line+':'+col ]
_post({ level: 'js-err', message: content })
}
return [ console, onerror ]
}
function consoleWrapperMiddleware(basePath, app) {
app.get(basePath, (req, res) => {
res.status(200).send('[ window.console, window.onerror ] = '+consoleWrapper.toString()+'(window.console, window.onerror, location.protocol.concat("//").concat(location.host).concat("'+basePath+'"))')
console.log('Console wrapper sent')
})
app.post(basePath, (req, res) => {
let body = []
req.on('data', (chunk) => {
body.push(chunk)
}).on('end', () => {
body = Buffer.concat(body).toString()
const logMsg = JSON.parse(body)
console.log('['+logMsg.level+']', ...logMsg.message)
res.writeHead(200)
res.end()
})
})
console.log('Log server listening from',basePath)
}
module.exports = consoleWrapperMiddleware