嘿,我用 nodejs 做了一個網(wǎng)絡(luò)服務(wù)器,如果我向 ip/test 發(fā)送請求,它會通過 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);});
通過 sweetalert 從 express 服務(wù)器獲取數(shù)據(jù)
翻過高山走不出你
2023-05-25 16:03:41