คำตอบ:
ที่ดียิ่งขึ้นสำหรับทางเลือกคือ:
var alertFallback = true;
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
if (alertFallback) {
console.log = function(msg) {
alert(msg);
};
} else {
console.log = function() {};
}
}
console.log จะใช้ได้เฉพาะหลังจากที่คุณเปิดเครื่องมือสำหรับนักพัฒนาซอฟต์แวร์ (F12 เพื่อสลับเปิดและปิด) สิ่งที่ตลกคือหลังจากที่คุณเปิดมันคุณสามารถปิดมันแล้วยังโพสต์มันผ่านทาง console.log การโทรและสิ่งเหล่านั้นจะปรากฏเมื่อคุณเปิดมันอีกครั้ง ฉันคิดว่านั่นเป็นข้อผิดพลาดแปลก ๆ และอาจได้รับการแก้ไข แต่เราจะได้เห็น
ฉันอาจจะใช้สิ่งนี้:
function trace(s) {
if ('console' in self && 'log' in console) console.log(s)
// the line below you might want to comment out, so it dies silent
// but nice for seeing when the console is available or not.
else alert(s)
}
และเรียบง่ายยิ่งขึ้น:
function trace(s) {
try { console.log(s) } catch (e) { alert(s) }
}
alert
คือความชั่วร้าย บางรหัสทำงานแตกต่างกันเมื่อมีการใช้การแจ้งเตือนเนื่องจากเอกสารสูญเสียการโฟกัสทำให้ข้อบกพร่องยิ่งยากที่จะวินิจฉัยหรือสร้างสิ่งที่ไม่เคยมีมาก่อน นอกจากนี้หากคุณทิ้งconsole.log
รหัสการผลิตไว้โดยไม่ตั้งใจมันก็ไม่เป็นอันตราย (สมมติว่ามันไม่ระเบิด) - เพียงบันทึกไปยังคอนโซลอย่างเงียบ ๆ หากคุณทิ้งalert
รหัสผลิตไว้โดยไม่ตั้งใจประสบการณ์ของผู้ใช้จะถูกทำลาย
นี่คือคำตอบที่หลากหลายของฉัน ฉันต้องการเห็นข้อความที่บันทึกไว้จริงแม้ว่าฉันจะไม่ได้เปิดคอนโซล IE เมื่อพวกเขาถูกไล่ออกดังนั้นฉันจึงผลักพวกเขาเข้าสู่console.messages
อาร์เรย์ที่ฉันสร้างขึ้น ฉันยังเพิ่มฟังก์ชันconsole.dump()
เพื่ออำนวยความสะดวกในการดูบันทึกทั้งหมด console.clear()
จะล้างคิวข้อความ
โซลูชั่นนี้ยัง "จัดการ" วิธีคอนโซลอื่น ๆ (ซึ่งฉันเชื่อว่าทั้งหมดมาจากFirebug Console API )
ในที่สุดโซลูชันนี้อยู่ในรูปแบบของIIFEดังนั้นจึงไม่ก่อให้เกิดมลพิษทั่วโลก อาร์กิวเมนต์ฟังก์ชันทางเลือกถูกกำหนดไว้ที่ด้านล่างของรหัส
ฉันเพิ่งวางลงในไฟล์ JS หลักของฉันซึ่งรวมอยู่ในทุกหน้าและลืมมัน
(function (fallback) {
fallback = fallback || function () { };
// function to trap most of the console functions from the FireBug Console API.
var trap = function () {
// create an Array from the arguments Object
var args = Array.prototype.slice.call(arguments);
// console.raw captures the raw args, without converting toString
console.raw.push(args);
var message = args.join(' ');
console.messages.push(message);
fallback(message);
};
// redefine console
if (typeof console === 'undefined') {
console = {
messages: [],
raw: [],
dump: function() { return console.messages.join('\n'); },
log: trap,
debug: trap,
info: trap,
warn: trap,
error: trap,
assert: trap,
clear: function() {
console.messages.length = 0;
console.raw.length = 0 ;
},
dir: trap,
dirxml: trap,
trace: trap,
group: trap,
groupCollapsed: trap,
groupEnd: trap,
time: trap,
timeEnd: trap,
timeStamp: trap,
profile: trap,
profileEnd: trap,
count: trap,
exception: trap,
table: trap
};
}
})(null); // to define a fallback function, replace null with the name of the function (ex: alert)
บรรทัดvar args = Array.prototype.slice.call(arguments);
จะสร้างอาร์เรย์จากarguments
วัตถุ นี้เป็นสิ่งจำเป็นเพราะข้อโต้แย้งไม่ได้จริงๆอาร์เรย์
trap()
เป็นตัวจัดการเริ่มต้นสำหรับฟังก์ชัน API ใด ๆ ฉันส่งอาร์กิวเมนต์ไปที่message
เพื่อให้คุณได้รับบันทึกของอาร์กิวเมนต์ที่ถูกส่งผ่านไปยังการเรียก API ใด ๆ (ไม่ใช่แค่console.log
)
ฉันเพิ่มอาร์เรย์พิเศษที่จับข้อโต้แย้งตรงตามที่ส่งผ่านไปยังconsole.raw
trap()
ฉันรู้ว่าargs.join(' ')
กำลังแปลงวัตถุเป็นสตริง"[object Object]"
ซึ่งบางครั้งอาจไม่เป็นที่ต้องการ ขอบคุณbfontaineสำหรับข้อเสนอแนะ
trap
ฟังก์ชั่นสองบรรทัดนี้ได้var args = Array.prototype.slice.call(arguments); var message = args.join(' ');
ไหม? ทำไมคุณส่งข้อโต้แย้งผ่านสิ่งนี้ไปยังข้อความ
มันน่าสังเกตว่า console.log
ใน IE8 ไม่ใช่ฟังก์ชั่น Javascript จริง ไม่รองรับapply
หรือcall
วิธีการ
console.log=Function.prototype.bind.call(console.log,console);
เพื่อหลีกเลี่ยงสิ่งนี้
bind
ไม่ได้
สมมติว่าคุณไม่สนใจทางเลือกในการแจ้งเตือนนี่เป็นวิธีที่กระชับยิ่งขึ้นในการแก้ไขข้อบกพร่องของ Internet Explorer:
var console=console||{"log":function(){}};
ฉันชอบวิธีที่โพสต์โดย "orange80" มันสวยงามเพราะคุณสามารถตั้งค่าได้ครั้งเดียวและลืมมัน
วิธีการอื่นต้องการให้คุณทำสิ่งที่แตกต่าง (เรียกว่าสิ่งอื่นที่ไม่ใช่ธรรมดาconsole.log()
ทุกครั้ง) ซึ่งเป็นเพียงการขอปัญหา ... ฉันรู้ว่าฉันจะลืมในที่สุด
ฉันได้ดำเนินการขั้นตอนต่อไปโดยใส่รหัสในฟังก์ชั่นยูทิลิตี้ที่คุณสามารถโทรครั้งแรกของ javascript ของคุณทุกที่ตราบใดที่มันก่อนที่จะเข้าสู่ระบบใด ๆ (ฉันกำลังติดตั้งสิ่งนี้ในผลิตภัณฑ์เราเตอร์ข้อมูลเหตุการณ์ของ บริษัท มันจะช่วยให้การออกแบบข้ามเบราว์เซอร์ของอินเทอร์เฟซผู้ดูแลระบบใหม่ง่ายขึ้น)
/**
* Call once at beginning to ensure your app can safely call console.log() and
* console.dir(), even on browsers that don't support it. You may not get useful
* logging on those browers, but at least you won't generate errors.
*
* @param alertFallback - if 'true', all logs become alerts, if necessary.
* (not usually suitable for production)
*/
function fixConsole(alertFallback)
{
if (typeof console === "undefined")
{
console = {}; // define it if it doesn't exist already
}
if (typeof console.log === "undefined")
{
if (alertFallback) { console.log = function(msg) { alert(msg); }; }
else { console.log = function() {}; }
}
if (typeof console.dir === "undefined")
{
if (alertFallback)
{
// THIS COULD BE IMPROVED… maybe list all the object properties?
console.dir = function(obj) { alert("DIR: "+obj); };
}
else { console.dir = function() {}; }
}
}
/**/console.log("...");
ดังนั้นจึงง่ายต่อการค้นหาและค้นหารหัสชั่วคราว
หากคุณได้รับ "undefined" จากการโทร console.log ทั้งหมดของคุณนั่นอาจหมายความว่าคุณยังมีการโหลด firebuglite เก่า (firebug.js) จะแทนที่ฟังก์ชันที่ถูกต้องทั้งหมดของ console.log ของ IE8 แม้ว่าจะมีอยู่ นี่คือสิ่งที่เกิดขึ้นกับฉันต่อไป
ตรวจสอบรหัสอื่น ๆ ที่แทนที่วัตถุคอนโซล
ทางออกที่ดีที่สุดสำหรับเบราว์เซอร์ที่ไม่มีคอนโซลคือ:
// Avoid `console` errors in browsers that lack a console.
(function() {
var method;
var noop = function () {};
var methods = [
'assert', 'clear', 'count', 'debug', 'dir', 'dirxml', 'error',
'exception', 'group', 'groupCollapsed', 'groupEnd', 'info', 'log',
'markTimeline', 'profile', 'profileEnd', 'table', 'time', 'timeEnd',
'timeStamp', 'trace', 'warn'
];
var length = methods.length;
var console = (window.console = window.console || {});
while (length--) {
method = methods[length];
// Only stub undefined methods.
if (!console[method]) {
console[method] = noop;
}
}
}());
มีคำตอบมากมาย วิธีแก้ปัญหาของฉันคือ:
globalNamespace.globalArray = new Array();
if (typeof console === "undefined" || typeof console.log === "undefined") {
console = {};
console.log = function(message) {globalNamespace.globalArray.push(message)};
}
ในระยะสั้นหาก console.log ไม่มีอยู่ (หรือในกรณีนี้ไม่ได้เปิด) จากนั้นจัดเก็บบันทึกในอาร์เรย์ทั่วโลก ด้วยวิธีนี้คุณจะไม่ถูกรบกวนด้วยการเตือนนับล้านและคุณยังสามารถดูบันทึกของคุณโดยเปิดหรือปิดคอนโซลนักพัฒนาซอฟต์แวร์
if (window.console && 'function' === typeof window.console.log) { window.console.log (o); }
window.console.log()
อาจมีใน IE8 แม้ว่าconsole.log()
จะไม่ใช่
typeof window.console.log === "object"
ไม่ใช่"function"
นี่คือ "IE โปรดอย่าผิดพลาด" ของฉัน
typeof console=="undefined"&&(console={});typeof console.log=="undefined"&&(console.log=function(){});
ฉันพบสิ่งนี้ในGitHub :
// usage: log('inside coolFunc', this, arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function f() {
log.history = log.history || [];
log.history.push(arguments);
if (this.console) {
var args = arguments,
newarr;
args.callee = args.callee.caller;
newarr = [].slice.call(args);
if (typeof console.log === 'object') log.apply.call(console.log, console, newarr);
else console.log.apply(console, newarr);
}
};
// make it safe to use console.log always
(function(a) {
function b() {}
for (var c = "assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,profile,profileEnd,time,timeEnd,trace,warn".split(","), d; !! (d = c.pop());) {
a[d] = a[d] || b;
}
})(function() {
try {
console.log();
return window.console;
} catch(a) {
return (window.console = {});
}
} ());
ฉันใช้วิธีการของวอลเตอร์จากด้านบน (ดู: https://stackoverflow.com/a/14246240/3076102 )
ฉันผสมในโซลูชันที่ฉันพบที่นี่https://stackoverflow.com/a/7967670เพื่อแสดงวัตถุอย่างถูกต้อง
นี่หมายความว่าฟังก์ชั่นกับดักกลายเป็น:
function trap(){
if(debugging){
// create an Array from the arguments Object
var args = Array.prototype.slice.call(arguments);
// console.raw captures the raw args, without converting toString
console.raw.push(args);
var index;
for (index = 0; index < args.length; ++index) {
//fix for objects
if(typeof args[index] === 'object'){
args[index] = JSON.stringify(args[index],null,'\t').replace(/\n/g,'<br>').replace(/\t/g,' ');
}
}
var message = args.join(' ');
console.messages.push(message);
// instead of a fallback function we use the next few lines to output logs
// at the bottom of the page with jQuery
if($){
if($('#_console_log').length == 0) $('body').append($('<div />').attr('id', '_console_log'));
$('#_console_log').append(message).append($('<br />'));
}
}
}
ฉันหวังว่านี้จะเป็นประโยชน์:-)
มันทำงานได้ใน IE8 เปิดเครื่องมือนักพัฒนาซอฟต์แวร์ของ IE8 โดยกดปุ่ม F12
>>console.log('test')
LOG: test
ฉันชอบวิธีนี้ (โดยใช้ doc ของ jquery) ... มันช่วยให้คุณใช้คอนโซลได้แม้กระทั่งใน ... เฉพาะการจับคือคุณต้องโหลดหน้าเว็บซ้ำถ้าคุณเปิดเครื่องมือ dev ของหน้านี้หลังจากโหลดหน้าเว็บ ...
มันอาจสั่นด้วยการบัญชีสำหรับฟังก์ชั่นทั้งหมด แต่ฉันใช้บันทึกเท่านั้นนี่คือสิ่งที่ฉันทำ
//one last double check against stray console.logs
$(document).ready(function (){
try {
console.log('testing for console in itcutils');
} catch (e) {
window.console = new (function (){ this.log = function (val) {
//do nothing
}})();
}
});
นี่คือรุ่นที่จะเข้าสู่คอนโซลเมื่อเครื่องมือของนักพัฒนาซอฟต์แวร์เปิดอยู่และจะไม่ปิดเมื่อใด
(function(window) {
var console = {};
console.log = function() {
if (window.console && (typeof window.console.log === 'function' || typeof window.console.log === 'object')) {
window.console.log.apply(window, arguments);
}
}
// Rest of your application here
})(window)
apply
วิธี
สร้างคอนโซลของคุณเองใน html .... ;-) สิ่งนี้สามารถ imprved แต่คุณสามารถเริ่มต้นด้วย:
if (typeof console == "undefined" || typeof console.log === "undefined") {
var oDiv=document.createElement("div");
var attr = document.createAttribute('id'); attr.value = 'html-console';
oDiv.setAttributeNode(attr);
var style= document.createAttribute('style');
style.value = "overflow: auto; color: red; position: fixed; bottom:0; background-color: black; height: 200px; width: 100%; filter: alpha(opacity=80);";
oDiv.setAttributeNode(style);
var t = document.createElement("h3");
var tcontent = document.createTextNode('console');
t.appendChild(tcontent);
oDiv.appendChild(t);
document.body.appendChild(oDiv);
var htmlConsole = document.getElementById('html-console');
window.console = {
log: function(message) {
var p = document.createElement("p");
var content = document.createTextNode(message.toString());
p.appendChild(content);
htmlConsole.appendChild(p);
}
};
}
console.log
คือมีใน IE8 แต่console
วัตถุที่ไม่ได้สร้างขึ้นจนกว่าคุณ DevTools เปิด ดังนั้นการเรียกไปยังconsole.log
อาจทำให้เกิดข้อผิดพลาดตัวอย่างเช่นหากเกิดขึ้นกับการโหลดหน้าเว็บก่อนที่คุณจะมีโอกาสเปิดเครื่องมือ dev คำตอบที่ชนะที่นี่อธิบายในรายละเอียดมากขึ้น