1
RxJS 5時失敗,如Firefox網頁擴展內容腳本,並給予注射以下錯誤的工作:
TypeError: a.Math.random is not a function TypeError: Rx.Subject is not a constructor
RxJS 5個Firefox網絡擴展:類型錯誤:的Math.random不是一個函數
RxJS 5時失敗,如Firefox網頁擴展內容腳本,並給予注射以下錯誤的工作:
TypeError: a.Math.random is not a function TypeError: Rx.Subject is not a constructor
RxJS 5個Firefox網絡擴展:類型錯誤:的Math.random不是一個函數
找到了解決辦法,在問題發生,因爲在Firefox內容腳本window.Math沒有定義,而是全局定義爲Math而不是窗口對象。 RxJS 5正在尋找window.Math。因此,在RxJS庫之前添加以下行,它將工作於Firefox。
window.Math = Math
編號:https://github.com/ReactiveX/rxjs/issues/2446#issuecomment-286908341