この投稿 によると、ベータ版でしたが、リリース版ではありませんか?
フォールバックの場合はさらに優れています:
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) }
}
これは、さまざまな答えに対する私の見解です。起動時に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
だけでなく)に渡された引数のログを取得できます。
trap()
に渡された引数を正確にキャプチャする配列console.raw
を追加しました。 args.join(' ')
がオブジェクトを文字列"[object Object]"
に変換していることがわかりましたが、これは望ましくない場合があります。 提案 をありがとう bfontaine 。
IE8のconsole.log
は真のJavascript関数ではないことに注意してください。 apply
またはcall
メソッドはサポートしていません。
警告のフォールバックを気にしないと仮定すると、Internet Explorerの欠点を回避するためのさらに簡潔な方法があります。
var console=console||{"log":function(){}};
「orange80」が投稿したアプローチが本当に気に入っています。一度設定すれば忘れてしまうため、エレガントです。
他のアプローチでは、何か別のことをする必要があります(毎回、プレーンなconsole.log()
以外のことを呼び出します)。
ログを記録する前であればどこでも、javascriptの先頭で1回呼び出すことができるユーティリティ関数でコードをラップすることで、さらに一歩進んでいます。 (これを会社のイベントデータルーター製品にインストールしています。これにより、新しい管理インターフェイスのクロスブラウザ設計が簡素化されます。)
/**
* 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呼び出しのすべてが「未定義」になっている場合、おそらく古いfirebugliteがまだロードされていることを意味します(firebug.js)。 IE8のconsole.logの有効な機能が存在しても、それらはすべて無効になります。とにかくこれが私に起こったことです。
コンソールオブジェクトをオーバーライドする他のコードを確認します。
コンソールを持たないブラウザに最適なソリューションは次のとおりです。
// 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が存在しない場合(または、この場合は開かれていない場合)、グローバル名前空間Arrayにログを保存します。これにより、何百万ものアラートに悩まされることなく、開発者コンソールを開いたり閉じたりしてログを表示できます。
if(window.console && 'function' === typeof window.console.log){ window.console.log(o); }
ここに私の「IEはクラッシュしないでください」です
typeof console=="undefined"&&(console={});typeof console.log=="undefined"&&(console.log=function(){});
私は上からウォルターのアプローチを使用しています(参照: https://stackoverflow.com/a/14246240/3076102 )
ここで見つけたソリューションを混ぜ合わせます https://stackoverflow.com/a/796767 オブジェクトを適切に表示します。
これは、トラップ機能が次のようになることを意味します。
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 />'));
}
}
}
これが役立つことを願っています:-)
これを 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 = {});
}
} ());
Htmlで独自のコンソールを作成する.... ;-)これは改善できますが、次のように開始できます。
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);
}
};
}
IE8で動作します。 F12を押してIE8の開発者ツールを開きます。
>>console.log('test')
LOG: test
開発ツールが閉じているときではなく、開いているときにコンソールにログを記録するバージョンを次に示します。
(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)
私はこの方法が好きです(jqueryのdoc readyを使用して)...つまり、コンソールを使用できます...ページがロードされた後にieの開発ツールを開くとページをリロードする必要があるだけです...
すべての機能を考慮することにより、より滑らかになる可能性がありますが、ログのみを使用するため、これが私が行うことです。
//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
}})();
}
});