Windows 10 通用 Javascript 应用 SQLite 在 Windows 移动 10
Windows 10 Universal Javascript app SQLite in Windows Mobile 10
我目前有一个有点工作的 Windows 10 通用应用程序,它使用可用的 SQLite 包装器 here。然而,问题是,当我将应用程序部署到 visual studio 中的 Windows 10 移动模拟器时,它停止工作,而是给我以下错误:
Exception is about to be caught by JavaScript library code at line
401, column 5 in /js/SQLite3.js 0x8007007e - JavaScript runtime error:
The specified module could not be found.
由于这在部署到本地机器时工作正常,有什么方法可以确保在将 UAP 应用程序部署到 windows 10 移动设备时也能正常工作吗?非常感谢!
您是否将 Sqlite 模块添加到您的项目中?
(在引用下 -> 右键单击 -> 添加新引用。)
我目前有一个有点工作的 Windows 10 通用应用程序,它使用可用的 SQLite 包装器 here。然而,问题是,当我将应用程序部署到 visual studio 中的 Windows 10 移动模拟器时,它停止工作,而是给我以下错误:
Exception is about to be caught by JavaScript library code at line 401, column 5 in /js/SQLite3.js 0x8007007e - JavaScript runtime error: The specified module could not be found.
由于这在部署到本地机器时工作正常,有什么方法可以确保在将 UAP 应用程序部署到 windows 10 移动设备时也能正常工作吗?非常感谢!
您是否将 Sqlite 模块添加到您的项目中?
(在引用下 -> 右键单击 -> 添加新引用。)