我正在使用react来构建应用程序,以使用Youtube的API上传视频,但是当我使用他们的样板代码时,返回的内容只是说unexpected token RetryHandler.prototype.retry = function(fn)
Here is the code if you click full example。每当我将此代码添加到我的react组件中时,我就无法使用RetryHandler.prototype.retry和之后的下一个RetryHandler定义函数。 MediaUploader也是如此。我尝试在构造函数之外定义RetryHandler和MediaUploader,但这是相同的结果。
constructor() {
super();
RetryHandler = function() {
this.interval = 1000; // Start at one second
this.maxInterval = 60 * 1000; // Don't wait longer than a minute
};
}
函数给出错误
RetryHandler.prototype.retry = function(fn) {
setTimeout(fn, this.interval);
this.interval = this.nextInterval_();
};