1
我一直在過去兩天面臨這個問題,在HTML代碼中爲「Expected:」拋出一個錯誤。我基本上與jspdf一起使用canvasjs,並在頁面加載時出現錯誤。我用cdn鏈接替換本地副本,認爲問題會得到解決,但仍然沒有解決。即快到jspdf預期:獲取寬度的錯誤
錯誤:
預期「:」 jspdf.debug.js,線1023字符9
錯誤發生用於jspdf主文件,因此我不能進一步進行。以下代碼寫入上面提到的行:
'pageSize' : {
get width() { //<<<<<<this line is causing the error
return pageWidth
},
get height() { //<<<<<<I'm assuming this line will also causing an error
return pageHeight
}
},
在CDN鏈接中找到相同的代碼。 CDN鏈接如下: https://cdnjs.cloudflare.com/ajax/libs/jspdf/1.1.135/jspdf.debug.js
在此先感謝!!!!