Phonegap/Javascript 应用程序:如何存储 cookie?
我正在探索为平板电脑编写一个 javascript 应用程序的想法,该应用程序将阅读个性化新闻网站(我不拥有该网站)。我想让用户登录,以便他们可以看到自己的内容,但我不知道如何使用 javascript 处理登录 cookie(即在每个请求时存储并重新发送它们)。
这可以通过使用 Phonegap 向本机 cookie 存储编写某种接口来实现吗?
我很感激任何帮助。
I am exploring the idea of writing a javascript app for tablets which will read a personalized news site (which I do not own). I want to have the users login so they can see their content, but I don't know of a way to handle login cookies with javascript (ie store and resend them on each request).
Is this possible to do by writing some kind of interface to the native cookie store with Phonegap?
I appreciate any help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Phonegap 不提供任何 cookie 抽象,因为已经有很多其他工具可以做到这一点(Phonegap 只是封装了智能手机功能,而不是基本的浏览器功能)。
如果你愿意使用 jQuery,你可能想尝试这个 jquery-cookie 插件,我我自己用过很成功。
Phonegap does not provide any cookie abstraction, as there are plenty of other tools to do that already (Phonegap just wraps up smartphone functionality, not basic browser functionality).
If you're willing to use jQuery, you may want to try this jquery-cookie plugin, I've used it successfully myself.