wx.setUserCloudStorage({
KVDataList:[{ key:'x1', value: "123" },{ key:'1', value: "0" }],
success : function(){
console.log("上传成功!")
}
});
wx.getUserInteractiveStorage({
keyList : ["x1" , "1"],//要获取数据的key列表
success : function(res){
//解密
打印出来是个 {}
}
});
为什么取出来的数据是个空的
和setUserCloudStorage对应的是getUserCloudStorage不是getUserInteractiveStorage
那这个api只能取用 storage.setUserInteractiveData写当前用户的关系链互动数据,所写入的数据吗?
小程序里用 wx.modifyFriendInteractiveStorage