0
I hope this question/answer saves time for those having the same cross-compatibility issues with internet explorer. 

問題: 我在項目中的一個使用vuejs2,它原來,有在Internet Explorer的早期版本中的一些兼容性問題。Vuejs Internet Explorer的兼容性問題(版本10和11)

首先,它深入到這個錯誤:

SCRIPT1014: Invalid character

然後這一個:

'Promise' is undefined

回答

0

的第一個錯誤是指利用Ecmascript6回thicks(`)的簡化了在javascript中使用字符串。 解決方案是使用連接HTML的舊方式。

至於第二誤差,使用許諾的是不是在早期版本的Internet Explorer處理,所述解決方案是使用填充工具(其是確保向後在舊的瀏覽器,例如相容性的API:承諾)

in my case I used this: 
<script src='https://cdn.polyfill.io/v2/polyfill.min.js'></script> 
相關問題