我想將以下內容轉換爲工作模式,但我認爲這是一個Es5/ES6問題。幫助讚賞。ES5 vs ES6 Javascript for Arrays
this.rows = Array.from(Array(Math.ceil(this.subCategoryModels.length/3)).keys());
我目前得到typscript錯誤:
[ts]
Property 'from' does not exist on type 'ArrayConstructor'.
any
和
[ts]
Property 'keys' does not exist on type 'any[]'.
any
也許https://github.com/Microsoft/TypeScript/issues/8174相關 – Dylan
* 「我認爲這是一個ES5/ES6問題」 * - 您是否嘗試寫ES5或ES6? 'Array.from()'和'.keys()'都是ES6方法,顯然它們在ES5中不起作用。 – nnnnnn
嘗試插入'新'如:「Array.from(new Array(Math ...」),看看是否有幫助 – etchesketch