アプリケーションの1つに対して、グローバルエラー処理「モジュール」を書いています。
必要な機能の1つは、関数をtry{} catch{}
ブロックで簡単にラップできるようにすることです。これにより、その関数へのすべての呼び出しに、グローバルロギングメソッドを呼び出すエラー処理コードが自動的に含まれるようになります。 (try/catchブロックでコードをどこでも汚染しないようにするため)。
ただし、これは、JavaScriptの低レベルの機能、.call
および.apply
メソッド、およびthis
キーワードについての私の理解を少し超えています。
私はプロトタイプのFunction.wrap
メソッドに基づいてこのコードを書きました:
Object.extend(Function.prototype, {
TryCatchWrap: function() {
var __method = this;
return function() {
try { __method.apply(this, arguments) } catch(ex) { ErrorHandler.Exception(ex); }
}
}
});
これは次のように使用されます:
function DoSomething(a, b, c, d) {
document.write(a + b + c)
alert(1/e);
}
var fn2 = DoSomething.TryCatchWrap();
fn2(1, 2, 3, 4);
そのコードは完全に機能します。 6を出力し、グローバルエラーハンドラーを呼び出します。
私の質問は、ラップしている関数がオブジェクト内にあり、「this」演算子を使用している場合、何かが壊れるのでしょうか? .applyを呼び出してそこに何かを渡しているので、少し心配です。これは何かを壊すのではないかと心配しています。
個人的には、組み込みオブジェクトを汚染する代わりに、デコレータテクニックを使用します。
var makeSafe = function(fn){
return function(){
try{
return fn.apply(this, arguments);
}catch(ex){
ErrorHandler.Exception(ex);
}
};
};
あなたはそれをそのように使うことができます:
function fnOriginal(a){
console.log(1/a);
};
var fn2 = makeSafe(fnOriginal);
fn2(1);
fn2(0);
fn2("abracadabra!");
var obj = {
method1: function(x){ /* do something */ },
method2: function(x){ /* do something */ }
};
obj.safeMethod1 = makeSafe(obj.method1);
obj.method1(42); // the original method
obj.safeMethod1(42); // the "safe" method
// let's override a method completely
obj.method2 = makeSafe(obj.method2);
しかし、プロトタイプを変更したい場合は、次のように書くことができます。
Function.prototype.TryCatchWrap = function(){
var fn = this; // because we call it on the function itself
// let's copy the rest from makeSafe()
return function(){
try{
return fn.apply(this, arguments);
}catch(ex){
ErrorHandler.Exception(ex);
}
};
};
明らかな改善は、makeSafe()をパラメーター化することであり、catchブロックで呼び出す関数を指定できます。
2017年の回答:ES6のみを使用します。次のデモ関数があるとします。
_var doThing = function(){
console.log(...arguments)
}
_
外部ライブラリを必要とせずに、独自のラッパー関数を作成できます。
_var wrap = function(someFunction){
var wrappedFunction = function(){
var args = [...arguments].splice(0)
console.log(`You're about to run a function with these arguments: \n ${args}`)
return someFunction(args)
}
return wrappedFunction
}
_
使用中で:
_doThing = wrap(doThing)
doThing('one', {two:'two'}, 3)
_
2016年の回答:wrap
モジュールを使用:
以下の例ではprocess.exit()
をラップしていますが、これは他の関数(ブラウザのJSも含む)と問題なく動作します。
_var wrap = require('lodash.wrap');
var log = console.log.bind(console)
var RESTART_FLUSH_DELAY = 3 * 1000
process.exit = wrap(process.exit, function(originalFunction) {
log('Waiting', RESTART_FLUSH_DELAY, 'for buffers to flush before restarting')
setTimeout(originalFunction, RESTART_FLUSH_DELAY)
});
process.exit(1);
_
Object.extend(Function.prototype、{Object.extend in the Google Chrome Consoleは 'undefined'を提供しますさてここにいくつかの実用的な例があります:
Boolean.prototype.XOR =
// ^- Note that it's a captial 'B' and so
// you'll work on the Class and not the >b<oolean object
function( bool2 ) {
var bool1 = this.valueOf();
// 'this' refers to the actual object - and not to 'XOR'
return (bool1 == true && bool2 == false)
|| (bool1 == false && bool2 == true);
}
alert ( "true.XOR( false ) => " true.XOR( false ) );
object.extend(Function.prototype、{...})ではなく、次のようにします。Function.prototype.extend = {}
古き良き方法での関数のラッピング:
//Our function
function myFunction() {
//For example we do this:
document.getElementById('demo').innerHTML = Date();
return;
}
//Our wrapper - middleware
function wrapper(fn) {
try {
return function(){
console.info('We add something else', Date());
return fn();
}
}
catch (error) {
console.info('The error: ', error);
}
}
//We use wrapper - middleware
myFunction = wrapper(myFunction);
ES6スタイルでも同じ:
//Our function
let myFunction = () => {
//For example we do this:
document.getElementById('demo').innerHTML = Date();
return;
}
//Our wrapper - middleware
const wrapper = func => {
try {
return () => {
console.info('We add something else', Date());
return func();
}
}
catch (error) {
console.info('The error: ', error);
}
}
//We use wrapper - middleware
myFunction = wrapper(myFunction);