axios如何text/event-stream

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了axios如何text/event-stream相关的知识,希望对你有一定的参考价值。

参考技术A 使用 Axios 可以通过 text/event-stream 来实现对服务器发来的数据进行监听。为此,可以使用 axios.get() 方法,并添加 responseType 字段,设置其值为'text/event-stream'。比如,使用以下代码可以获取来自服务器的数据:axios.get('/api/data', responseType: 'text/event-stream').then(res => // handle data here);

text 邮便番号から件名を取得Axios,express,nodejs

// 郵便番号から件名を取得
function getPrefecture(event, postalCode) { 
    axios.post('http://zipcloud.ibsnet.co.jp/api/search?zipcode=' + postalCode)
      .then(response => {
         // Object loop
         const results = response.data.results[0]
         for (const key in results) {
            if (results.hasOwnProperty(key) && key === "address1") {
                return bot.replyMessage(event.replyToken, {
                    type: 'text',
                    text: results[key]
                });
            }else {
                continue
            }
         }
      })
      .catch(error => { console.log(error); }
    );    
 }

以上是关于axios如何text/event-stream的主要内容,如果未能解决你的问题,请参考以下文章

如何将 *any* cURL 或 node-fetch 请求转换为 Axios 请求?

如何使用 axios 发送授权标头

如何使用 axios 进行 https 调用?

如何在 Effect Hook 中使用 axios?

如何使用 axios 标头在 vuejs 中传递数据

如何在 firebase 函数中使用 Axios 正确发送 Post 请求?