Tencent / MMKV

An efficient, small mobile key-value storage framework developed by WeChat. Works on Android, iOS, macOS, Windows, and POSIX.
Other
17.26k stars 1.89k forks source link

OpenHarmony customize storage path error #1381

Closed Martin-HZK closed 1 month ago

Martin-HZK commented 1 month ago

OpenHarmony在定制路径的时候initialize方法在文档中写的函数参数类型不正确 let appCtx = this.context.getApplicationContext(); let rootDir = appCtx.filesDir + '/mmkv_2'; let cacheDir = appCtx.cacheDir; MMKV.initialize(rootDir, cacheDir); 第一个传入类型报错应该是Context类型的而不是string类型

Martin-HZK commented 1 month ago

解决方法:修改成initializeWithPath方法即可

lingol commented 1 month ago

Noted. I will edit the wiki.