iT邦幫忙

2022 iThome 鐵人賽

DAY 18
1
自我挑戰組

九局下半的學習日誌系列 第 18

<DAY18> axios 抓到json key值後設成選單選項

  • 分享至 

  • xImage
  •  
<script>
        axios.get('http://localhost:3000/data')
            .then(function (res) {
                for (var x in res.data) {
                    $('#chosedata').append($("<option/>", {
                        value: x,
                        text: x
                    }));
                }
            }
            )
            .catch(err => {
                console.log(err.response);
            })
    </script>

上一篇
<DAY17>
下一篇
<DAY19>
系列文
九局下半的學習日誌30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言