-1
A
回答
0
您的瀏覽器可能不具備它所需要的填充工具:
添加重複填充工具到您的app.js渲染調用之前。 從MDN:
if (!String.prototype.repeat) {
String.prototype.repeat = function(count) {
'use strict';
if (this == null) {
throw new TypeError('can\'t convert ' + this + ' to object');
}
var str = '' + this;
count = +count;
if (count != count) {
count = 0;
}
if (count < 0) {
throw new RangeError('repeat count must be non-negative');
}
if (count == Infinity) {
throw new RangeError('repeat count must be less than infinity');
}
count = Math.floor(count);
if (str.length == 0 || count == 0) {
return '';
}
// Ensuring count is a 31-bit integer allows us to heavily optimize the
// main part. But anyway, most current (August 2014) browsers can't handle
// strings 1 << 28 chars or longer, so:
if (str.length * count >= 1 << 28) {
throw new RangeError('repeat count must not overflow maximum string size');
}
var rpt = '';
for (;;) {
if ((count & 1) == 1) {
rpt += str;
}
count >>>= 1;
if (count == 0) {
break;
}
str += str;
}
return rpt;
}
}
相關問題
- 1. 陣營未定義的錯誤
- 2. 陣營導航未定義的錯誤
- 3. 陣營HandleDelete類型錯誤未定義
- 4. 陣營this.props未定義
- 5. 類型錯誤:enterPage在OnsenUI 2未定義陣營導航
- 6. 陣營路由器類型錯誤:_this.props.history未定義
- 7. 陣營酶類型錯誤:無法未定義
- 8. 陣營的WebPack未定義控制檯
- 9. 陣營教程 - Firefox有當陣列
- 10. 陣營 - 未捕獲的類型錯誤:無法讀取的未定義
- 11. 陣營教程實例example.js拋出一個錯誤:42
- 12. 陣營天然由實教程返回錯誤取JSON
- 13. 流星陣營:Accounts.changePassword未定義
- 14. 陣營Android本地:screenPhysicalPixels.width未定義
- 15. 陣營教程:CommentForm的onsubmit不工作
- 16. 陣營潰敗V-4'this.props.match.params` ** **未定義和'staticContext`未定義
- 17. Rails教程中的未定義方法
- 18. chat.js:89未捕獲的ReferenceError:綁定未定義(...)在陣營JS
- 19. Rails教程5.3.0 TDD錯誤:「未定義方法訪問」
- 20. 陣營路由器V4錯誤「未捕獲的ReferenceError:路由器沒有定義」
- 21. 陣營原住民 - 終極版 - 錯誤:未定義不是對象 - _renderRow的ListView
- 22. 陣營-引導:類型錯誤:無法獲取的未定義或空引用
- 23. 陣營本機Redux的錯誤:未定義是不是一個對象(評估
- 24. 加載陣營與「要求沒有定義」的錯誤
- 25. 陣營本地終極版createStore錯誤:未定義不是對象(計算「action.type」)
- 26. 組件繼承的陣營
- 27. Rails教程:未定義的方法
- 28. 錯誤與CONCAT陣營
- 29. 陣營倒計時錯誤
- 30. 陣營機調試錯誤
爲了更容易地診斷您的問題,複製你已經寫進繼電器遊樂場什麼,在這裏發表一個鏈接。 https://facebook.github.io/relay/prototyping/playground.html – steveluscher
只是想在這裏添加它爲其他誰遇到同樣的問題.. – obimod