gpt4 book ai didi

javascript - 将导入的函数分配为类方法?

转载 作者:行者123 更新时间:2023-11-28 14:15:33 24 4
gpt4 key购买 nike

是否可以将导入的函数分配为类方法,以便它自动进入对象原型(prototype)链?

// Module
module.exports = function testMethod() {
console.log('From test method')
}

// Main
const testMethod = require('./testMethod')

class TestClass {
// Replace this method with imported function
testMethod() {
console.log('From test method')
}
}

const obj = new TestClass()

我能够使用 this.testMethod = testMethod 将此方法附加到此构造函数中,但该方法并未出现在对象原型(prototype)链上。

最佳答案

分配给 TestClass.prototype 属性,以便 TestClass 的实例将看到导入的方法:

class TestClass {
}
TestClass.prototype.testMethod = testMethod;

const testMethod = () => console.log('test method');

class TestClass {
}
TestClass.prototype.testMethod = testMethod;

const tc = new TestClass();
tc.testMethod();

关于javascript - 将导入的函数分配为类方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57666077/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com