如何将其他参数传递给子类构造函数?

时间:2018-03-24 05:47:18

标签: node.js ecmascript-6

我实现了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;
        }

1 个答案:

答案 0 :(得分:1)

您可以将MyWriter类设置为:

action

我认为this链接可以帮助您。