var timestamp3 = new Date().getTime();
var value = JSON.stringify({
"wxgame": {
"score":parseInt(txt_text),
"update_time": timestamp3
},
"cost_ms":36500
});
var kvScore = {
key:"score",
value:value
}
console.log(kvScore);
var arr = [];
arr.push(kvScore);
wx.setUserCloudStorage({
KVDataList:arr,
success:function(res){
console.log("存储成功");
},
fail:function(res){
console.log("存储失败",res);
}
});
不知道哪里有问题
大神 我按照文档写的
之后 游戏中心 排行榜 还是没数据,是不是
这里需要写成
游戏内排行榜功能配置请参考:https://developers.weixin.qq.com/minigame/dev/tutorial/open-ability/open-data.html
搜索、游戏中心排行榜功能配置请参考:https://developers.weixin.qq.com/minigame/dev/tutorial/open-ability/ranklist.html