我可以从存储读取值,直到应用程序关闭。 关闭浏览器并重新运行应用程序后。我将从storage.get中获取空值
在教程页面中:
set.seed(1)
F3 <- cumsum(runif(1e3, -2, 2))+runif(1e3)
F4 <- cumsum(rnorm(1e3))+rnorm(1e3, 0, 0.5)
df <- data.frame(F3, F4)
plotpairs <- function(x, y) {
if (NCOL(x) > 1) {
nam <- colnames(x)[1:2]
y <- x[,2]
x <- x[,1]
} else {
nam <- as.character(match.call()[c("x", "y")])
}
plot(x, type="l", col="red", ylim=range(c(x, y)))
lines(y, type="l", col="blue")
legend("topleft", legend=nam, lwd=c(5, 5), col=c("red", "blue"), bty="n")
}
plotpairs(F3, F4)
with(df, plotpairs(F3, F4)) # same
plotpairs(df) # same
在component.ts中:
this.storage.set('hasSeenTutorial', 'true');
答案 0 :(得分:0)
使用ionic-3的已知事实是,浏览器/ OS会自行决定清除本地存储。如果您想要强制持久性,并且不辜负浏览器/操作系统清除策略的控制,请使用离子documentation中推荐的插件sqlite。