欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

axios和vue得结合 node.js

程序员文章站 2022-07-04 18:51:28
...
<body>
            <div id="app">
            <input type="text" v-model.trim="msg" @keydown.enter="handleSubmit">
            <ul v-if="searchList.length>0" >

                    <li v-for="item in searchList">{{item.name}}</li>
            </ul>

            <div v-else>加载中....</div>
            
            </div>

            <script src="./lib/axios.js"></script>
            <script src="./lib/vue.js"></script>
    <script>
        var vm = new Vue({
            el:'#app',
            data:{
                msg:'',
                  searchList:[] ,
                
            },
            methods: {

                    handleSubmit(){

                                this.search(this.msg)
                    },

                search(keyword){
                    axios
                    .get("http://127.0.0.1:3000/search?keywords="+keyword)
                    .then((res)=>{
                        //res 就是服务端返回响应对象(返回得查询数值)
                        //res对象中 存在这很多数据与对象得嵌套,我们要从其中把想要的数据剥离出来
                        //我们把查询到的歌曲的数组 复制给this.searchList

                            this.searchList= res.data.result.songs;
                            console.log(this.searchList)
                    });
                }
            },

            mounted () {


                    setTimeout(() => {
                        this.search('大碗宽面')
                    }, 1000);

                this.search()
            }
        });

        axios.get('http://127.0.0.1:3000/search?keywords=海阔天空').then((res) =>{
                    console.log(res)
                    console.log(res.data.result.songs)
                })
      
        </script>
</body>

相关标签: 1024程序员节