PouchDB 在 IE8 中不工作
PouchDB not working in IE8
我正在 IE8 中测试 PouchDB 应用程序,但出现以下错误。我在 index.html.
中包含 pouchdb.localstorage.js 和 es5.shim.js 文件
您可以在下面找到错误:
- 下一行 (pouchdb.localstorge.js) 的预期标识符、字符串或数字:
Line no. 11019: , try: [
- 下一行的预期标识符(main.js - 本地 js 文件):
}).catch(function (err) { console.log('Unable to insert into DB.
Error: ' + err.name + ' - ' + err.message);
});
我该如何解决这些问题?
这是一个错误。请在 Github 上提交问题,我们会进行调查。似乎问题在于我们需要对源文件进行 es3ify 以转义 "try."
等关键字
我正在 IE8 中测试 PouchDB 应用程序,但出现以下错误。我在 index.html.
中包含 pouchdb.localstorage.js 和 es5.shim.js 文件您可以在下面找到错误:
- 下一行 (pouchdb.localstorge.js) 的预期标识符、字符串或数字:
Line no. 11019: , try: [
- 下一行的预期标识符(main.js - 本地 js 文件):
}).catch(function (err) { console.log('Unable to insert into DB. Error: ' + err.name + ' - ' + err.message); });
我该如何解决这些问题?
这是一个错误。请在 Github 上提交问题,我们会进行调查。似乎问题在于我们需要对源文件进行 es3ify 以转义 "try."
等关键字