gpt4 book ai didi

android - Phonegap - 本地存储不工作 - Android

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:47:45 27 4
gpt4 key购买 nike

我正在使用本地存储在页面之间传递值以创建滚动效果(用户单击链接并根据 ID 滚动到页面的特定部分)

我以前使用过 cookie,但它似乎在 Android 上不起作用,我读到支持本地存储,所以切换到那个。它在浏览器中工作得很好,但一旦它被打包为 native 应用程序,我就失去了所有功能? API 声明应该支持它,有什么想法吗?

这是我的代码:

基本网址:

var storage = window.localStorage;
$("a.scroll_link").click(function(event) {
event.preventDefault();
var value = $(this).attr("id");

storage.setItem("key",value);

console.log(value);

window.location=$(this).attr("href");
});

接收地址:

$(function () { 

var value = window.localStorage.getItem("key");

if (value != "" && value != "undefined" && value != null) {
var storage = window.localStorage;
storage.setItem("key",value);
var scroll_type = "";

if ($.browser.webkit) {
scroll_type = "body";
} else {
scroll_type = "html";
}

$(scroll_type)
.stop()
.animate({
//get top-position of target-element and set it as scroll target
scrollTop: ($("#" + value).offset().top - 25)
//scrolldelay: 1.5 seconds
}, {
duration: 1500,
complete: function () {
storage.removeItem("key");
},
});
}
});

代码在浏览器中运行良好,但不是原生的,有什么想法吗?

谢谢,

最佳答案

使用 document.addEventListener("deviceready", onDeviceReady, false) 而不是 $(function(){...}

http://docs.phonegap.com/en/2.5.0/cordova_events_events.md.html#deviceready

关于android - Phonegap - 本地存储不工作 - Android,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15157245/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com