Vue触发要求一个接一个

时间:2018-08-24 18:35:53

标签: vue.js vue-resource

我有两个职能。我想触发一个函数-等待firstFunction()结束,然后触发secondFunction()。但是我不想将其作为回调。

firstFunction() {
        this.$http.post(
          `url1`,
            data1,
          { channel: 'default' },
          { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }
        ).then(response => {
            console.log(response)
        });
},
secondFunction() {
       this.$http.post(
          `url2`,
            data2,
          { channel: 'default' },
          { headers: { 'Content-Type': 'application/x-www-form-urlencoded' } }
        ).then(response => {
            console.log(response)
        });
},
finalFunction() {
    this.firstFunction() 
    this.secondFunction()
}

0 个答案:

没有答案