JavaScript 中的noSuchMethod 功能允許攔截對不存在方法。但是,是否有類似的屬性機制?
ES6 代理提供了自訂屬性存取的能力。我們可以利用它來模擬屬性的類似__noSuchMethod__ 的行為:
<code class="javascript">function enableNoSuchMethod(obj) { return new Proxy(obj, { get(target, p) { if (p in target) { return target[p]; } else if (typeof target.__noSuchMethod__ == "function") { return function(...args) { return target.__noSuchMethod__.call(target, p, args); }; } } }); }</code>
這裡是使用代理來實作可以處理未知屬性的「Dummy」類別的範例:
<code class="javascript">function Dummy() { this.ownProp1 = "value1"; return enableNoSuchMethod(this); } Dummy.prototype.test = function() { console.log("Test called"); }; Dummy.prototype.__noSuchMethod__ = function(name, args) { console.log(`No such method ${name} called with ${args}`); }; var instance = new Dummy(); console.log(instance.ownProp1); instance.test(); instance.someName(1, 2); instance.xyz(3, 4); instance.doesNotExist("a", "b");</code>
以上是如何在 JavaScript 中使用代理實作屬性的無此類方法行為?的詳細內容。更多資訊請關注PHP中文網其他相關文章!