Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
4.0k views
in Technique[技术] by (71.8m points)

uniapp连接本地sqlite数据库 路径问题

function openSqlite(){

//创建数据库或者打开
//这plus.sqlite只在手机上运行
return new Promise((resolve,reject) =>{
    plus.sqlite.openDatabase({
        name:'pop',  //数据库名称
        path:'_doc/pop.db',   //数据库地址,
        success(e){
            resolve(e); //成功回调
        },
        fail(e){
            reject(e); //失败回调
        }
    })
})    

}
我想取本地的一个db文件里的数据,
这里的path该怎么写


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神解答

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...