我实现了nodejs Writable
类,如下所示:
const { Writable } = require('stream');
class MyWriter extends Writable {
constructor(props) {
super(props);
}
...
根据我需要在我的编写器构造函数方法中调用super(props)
的文档。我想知道如何在构造函数中传递其他参数?
如果我在下面定义类,我应该如何新建实例?
class MyWriter extends Writable {
constructor(props, name) {
super(props);
this.name = name;
}