vue 一个input同时请求两个接口

Posted 雅涵

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue 一个input同时请求两个接口相关的知识,希望对你有一定的参考价值。

这个问题可以在getDate方法里在调用另外一个接口的函数。

vue里html

<calendar
:value="today"
:placeholder="placeholder"
v-on:selected="getData"
>
</calendar>

scirpt

  getStarDate(date){

                console.log(date)

                this.date = date.replace(/\//g, ‘‘)

                api.getOrderStarsList(this.date)

                .then(res => {

                    console.log(res.data)

                    if (res.data.ok) {

                        this.startList = res.data.r

                    }

                }).catch(err => {

                    alert(err)

                })

            },

            getData(date) {

                this.date = date.replace(/\//g, ‘‘)

                api.getOrderList(this.date,this.userId,this.userPhone,this.currentPage)                

                .then(res => {

                    console.log(res.data)

                    if (res.data.ok) {

                        …                    }

                }).catch(err => {

                    // alert(err)

                })

                this.getStarDate(date)

            },

以上是关于vue 一个input同时请求两个接口的主要内容,如果未能解决你的问题,请参考以下文章

vue点击tab时调用接口

vue 中使用 axios 请求接口,请求会发送两次问题

vuewebupload怎么添加请求头部内容

vue系列——数据请求

vue跨域请求时报403

Vue中 点击触发按钮 请求接口