Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将用户信息存储在数据库中。
最好的方法是使用 jQuery 从 mysql 表中获取数据吗?这甚至可能吗?
我想高效而轻松地做到这一点。
如果这是本地数据库,我建议查看 Cordova 的本地存储 API:
http://docs.phonegap.com/en/2.3.0/cordova_storage_storage.md.html#Storage
如果这是一个远程数据库,您可能需要在存储数据的服务器上编写一个 API,并使用 jQuery 通过 XHR 将数据发送到服务器。