How to get the console.log content as string in JavaScript(如何在 JavaScript 中将 console.log 内容作为字符串获取)
问题描述
我正在尝试将 console.log 作为纯 JavaScript 中的字符串.我的输入是一个脚本,我不熟悉,我想把console.log中的所有消息收集成一个字符串.
I'm trying to get the console.log as string in pure JavaScript. My input is a script, which I'm not familiar with, and I want to collect all the messages in the console.log into a string.
例如:
function doSomething(){
console.log("start");
console.log("end");
var consoleLog = getConsoleLog();
return consoleLog;
}
function getConsoleLog(){
// How to implement this?
}
alert(doSomething());
JSFiddle 链接
请注意,我不需要提醒日志 - 这只是测试功能的一个简单示例.我得对日志的内容做一些操作.
Note that I do not need to alert the log - this is just a simple example of testing the functionality. I'll have to do some operations on the log's content.
推荐答案
你可以在使用之前覆盖 console.log
方法:
You could overwrite console.log
method before using it:
var logBackup = console.log;
var logMessages = [];
console.log = function() {
logMessages.push.apply(logMessages, arguments);
logBackup.apply(console, arguments);
};
使用 apply
和 arguments
保留正确的 console.log
行为,即您可以通过一次调用添加多个日志消息.
Using apply
and arguments
preserves the correct console.log
behaviour, i.e. you can add multiple log messages with a single call.
它将所有新的 console.log
消息推送到 logMessages
数组.
It will push all new console.log
messages to logMessages
array.
这篇关于如何在 JavaScript 中将 console.log 内容作为字符串获取的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 JavaScript 中将 console.log 内容作为字符串获


基础教程推荐
- 检查 HTML5 拖放文件类型 2022-01-01
- fetch 是否支持原生多文件上传? 2022-01-01
- Bootstrap 模态出现在背景下 2022-01-01
- 即使用户允许,Gmail 也会隐藏外部电子邮件图片 2022-01-01
- 如何添加到目前为止的天数? 2022-01-01
- 原生拖动事件后如何获取 mouseup 事件? 2022-01-01
- Fabric JS绘制具有活动形状的多边形 2022-01-01
- npm start 错误与 create-react-app 2022-01-01
- 在 contenteditable 中精确拖放 2022-01-01
- Bokeh Div文本对齐 2022-01-01