如何不将`this`存储在变量中而将`this`上下文传递给自调用匿名函数?

时间:2018-08-21 22:00:20

标签: javascript anonymous-function self-invoking-function

理想情况下,我们可以使用Function.prototype.bind函数进行此操作。我也不认为这里有使用粗箭头功能的明确方法。 Ycombinator的魔力?

这是我到目前为止尝试过的:

(function pump () {
  return browserReadableStreamReader.read().then(({ done, value }) => {
    if (done) {
      return this.end()
    }

    this.write(value)
    return pump()
  })
}).bind(this)()

1 个答案:

答案 0 :(得分:0)

这就是我所做的:

const { PassThrough } = require('stream')
/**
 * Google Chrome ReadableStream PassThrough implementation
 * @extends PassThrough
 */
class BrowserPassThrough extends PassThrough {
  /**
   * @param {Object} options - options to pass to PassThrough
   * @param {ReadableStreamDefaultReader} browserReadableStreamReader - reader
   */
  constructor (options, browserReadableStreamReader) {
    super(options)
    this.reader = browserReadableStreamReader
    this.pump()
  }

  pump () {
    this.reader.read().then(({ done, value }) => {
      if (done) {
        return this.end()
      }

      this.write(value)
      this.pump()
    })
  }
}
module.exports = BrowserPassThrough