{
"errorCode": 0,
"result": {
"businessCode": true,
"data": {
"1": {
"preDrawIssue": "2026212",
"preDrawTime": "2026-08-10 21:15:00",
"preDrawCode": "5,6,1",
"playtype": "10"
},
...
}
}
}
{
"errorCode": 0,
"result": {
"businessCode": true,
"data": {
"1": { "title": "福彩3D", "playtype": "10", "status": "active" },
...
}
}
}
{
"errorCode": 0,
"result": {
"businessCode": true,
"data": ["鼠","牛","虎","兔","龙","蛇","马","羊","猴","鸡","狗","猪"]
}
}
$.ajax({
url: '/api/index.php?action=lottery_results',
type: 'GET',
dataType: 'json',
success: function(data) {
if (data.errorCode === 0 && data.result.businessCode) {
var results = data.result.data;
console.log('开奖数据:', results);
// 处理数据...
}
}
});
fetch('/api/index.php?action=lottery_results')
.then(response => response.json())
.then(data => {
if (data.errorCode === 0 && data.result.businessCode) {
console.log('开奖数据:', data.result.data);
}
})
.catch(error => console.error('Error:', error));
免责声明:本站所有内容仅供参考,不进行任何现金交易行为。
沉迷赌博,害人害己害国家,请远离赌博!
本站不承担由于内容的合法性所引起的一切争议和法律责任。
(汇旺) 版权所有 All Rights Reserved.