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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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); }
    );    
 }

以上是关于text 邮便番号から件名を取得Axios,express,nodejs的主要内容,如果未能解决你的问题,请参考以下文章

text 邮便番号自动入力

python debiancode:Debianのコードネームをバージョン番号から求める

sql スキーマのテーブル名を取得

标准日本语(初)第二单元 Note

text [VIM]ファイル名をキャメルケースに

python APIからデータ取得