嘿,我用 nodejs 做了一个网络服务器,如果我向 ip/test 发送请求,它会通过 res.send('test) 给我文本
我想通过 sweetalert 获取此文本,但它总是失败:/
JavaScript 代码:
const ipAPI = 'http://ip:port/test'
Swal.queue([{
title: '',
confirmButtonText: 'Click me',
showLoaderOnConfirm: true,
preConfirm: () => {
return fetch(ipAPI)
.then(response => response.html())
.then(data => Swal.insertQueueStep(data))
.catch(() => {
Swal.insertQueueStep({
icon: 'error',
title: ':('
})
})
}
}])
和 Nodejs Express 代码:
app.post('/test', function(req, res){
res.send(globalServerCount);
});
猛跑小猪
相关分类