axios的使用

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

一、引入 vue和axios

二、使用步骤

1.引入库

代码如下(示例):

 <div id='app'>
        <img :src="imgSrc" alt="">

        <ul>
            <li v-for="(item,index) in courseList" :key="item.courseId">
                <img :src="item.coverFileUrl" alt="">
                <p>{{item.courseTitle}}</p>
                <p>{{item.learningNum}}节课</p>
                <p>免费</p>
            </li>
        </ul>
        <h2>精品课程</h2>
        <ul>
            <li v-for="(item,index) in boutiqueList" :key="item.courseId">
                <img :src="item.coverFileUrl" alt="">
                <p>{{item.courseTitle}}</p>
                <p>{{item.learningNum}}节课</p>
                <p v-if="item.isFree==1">免费</p>
                <p v-else-if="item.isDiscount==1"><del>{{item.discountPrice}}</del>{{item.coursePrice}}</p>
                <p v-else>{{item.discountPrice}}</p>
            </li>
        </ul>
    </div>

2.读入数据

代码如下(示例):

 const vm = new Vue({
            el: '#app',
            data: {
                imgSrc: '',
                courseList: [],
                boutiqueList: []
            },
            methods: {
                getCourseList(type = 'free') {
                    let url = new URLSearchParams()
                    url.append('type', type)
                    url.append('pageSize', 5)
                    url.append('pageNum', 1)
                    return axios.post('http://wkt.shangyuninfo.cn/weChat/applet/course/list/type', url)
                }
            },
            created() {
                console.log(this);
                // console.log();
                // get
                axios.get('http://wkt.shangyuninfo.cn/weChat/applet/course/banner/list?number=1').then(res => {
                    console.log(res);
                    this.imgSrc = res.data.data[0].imgUrlPc
                })

                // 封装
                this.getCourseList().then(res => {
                    this.courseList = res.data.rows
                })
                this.getCourseList('boutique').then(res => {
                    this.boutiqueList = res.data.rows
                })
                // post
                // formData()
                // 实例化
                // let url = new FormData()
                // url.append('type', 'free')
                // url.append('pageSize', 10)
                // url.append('pageNum', 1)
                //  application/x-www-form-urlencoded
                // let url = new URLSearchParams()
                // url.append('type', 'free')
                // url.append('pageSize', 5)
                // url.append('pageNum', 1)

                // axios.post('http://wkt.shangyuninfo.cn/weChat/applet/course/list/type', url).then(res => {
                //     console.log(res);
                //     this.courseList = res.data.rows
                // })


                // let urlBoutique = new URLSearchParams()
                // urlBoutique.append('type', 'boutique')
                // urlBoutique.append('pageSize', 5)
                // urlBoutique.append('pageNum', 1)

                // axios.post('http://wkt.shangyuninfo.cn/weChat/applet/course/list/type', urlBoutique).then(res => {
                //     console.log(res);
                //     this.boutiqueList = res.data.rows
                // })


                axios.post('http://wkt.shangyuninfo.cn/weChat/applet/subject/list', {
                    enable: 1
                }).then(res => {
                    console.log(res);
                })
            }
        })

该处使用的url网络请求的数据。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值