随机生成今日运势,包含综合、爱情、事业、财运及幸运数字、颜色、方位、物品。
/api/proxy/fortune {
"code": 200,
"message": "success",
"data": {
"overall": "大吉",
"overallStars": 7,
"love": "中吉",
"loveStars": 5,
"career": "吉",
"careerStars": 6,
"wealth": "小吉",
"wealthStars": 4,
"luckyNumber": 42,
"luckyColor": "蓝色",
"luckyDirection": "东南",
"luckyItem": "咖啡"
}
} fetch('https://somoe.top/api/proxy/fortune')
.then(res => res.json())
.then(data => console.log(data.data.overall)); 响应结果:
{
"code": 200,
"message": "success",
"data": {
"overall": "凶",
"overallStars": 2,
"love": "大吉",
"loveStars": 7,
"career": "大凶",
"careerStars": 1,
"wealth": "小吉",
"wealthStars": 4,
"luckyNumber": 17,
"luckyColor": "绿色",
"luckyDirection": "东南",
"luckyItem": "书本"
}
}