我正在使用 cordova 混合移动应用程序。在该应用程序中,我想在代码中实现共享首选项。我也得到了服务器的回复。 如何在我的应用程序中实现共享首选项。我通过 jquery 获得回复,我的文件扩展名是 .html
答案 0 :(得分:1)
在cordova应用程序中,您可以使用本地存储,例如
window.localStorage.setItem('Username',value); //Store your values
window.localStorage.getItem('Username'); //Retrieve your values
window.localStorage.removeItem('Username'); //Remove your values
答案 1 :(得分:0)
http://ngcordova.com/docs/plugins/preferences/
使用此插件。
$cordovaPreferences
方法 商店(关键,价值,字典) 存储给定字典和密钥的首选项。
fetch(key,dict) 通过给定的字典和密钥获取首选项。
删除(键,字典) 通过给定的字典和键删除首选项。
显示() 显示应用程序首选项。有关详细信息,请查看如何显示首选项窗格。