-
Notifications
You must be signed in to change notification settings - Fork 267
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
将storage放到全局是不是需要react-native某个版本以上才行啊? #29
Comments
没有版本要求。不需要import。 |
我是直接创建一个js文件,内容如下,然后在其它js文件中直接使用storage,这样有问题吗?该怎样使用?
|
你创建一个js文件,可以,没问题,——然而它什么时候执行呢,以及甚至它到底执行过没?? |
你好。请问下 有react-native-storage Demo吗?初学者 求一份 急 跟着git上介绍来 写下来是错误的 希望求一份demo 先谢谢了。 |
@mxkedr 文档里就是demo直接可运行啊,具体有什么错自己开个issue贴出来啊。 |
怎么申明,import storage from './app/utils/RTStorage'; 在入口 报错 |
@Rcrosp 具体有什么错自己开个issue贴出来 |
你好,问下 如果使用key id 方式存储数据, id 可以实现自增长吗?还是每次增加一条都需要自己设定id的值呢? |
@XIAOYAYAYAYA 看不懂什么叫自己另外开个issue吗? 没有自增长,这不是数据库。 |
@sunnylqm |
@meijingkang |
@meijingkang 你的问题解决了么 |
@phonebird 你这样创建一个js文件声明的这个storage,在其他文件中怎么拿到这个storage |
就是说 在index.js里 在使用的地方 |
@sunnylqm 在class中使用有效,外部会报错,请问大佬啥情况 |
你好,我使用
global.storage = storage;
将storage放在全局,
之后在其它地方直接使用
storage.save({ key: 'loginInfo', rawData: obj, });
提示找不到storage这个变量,我想问一下是不是需要在使用的地方在import一下啊?如果这样的话,global这个还有什么用?
The text was updated successfully, but these errors were encountered: