如何在Vue.JS中使用axios方法填充组件的数据

时间:2018-12-27 07:06:21

标签: javascript vue.js axios vuetify.js

我想使用Axios的方法填充组件数据。但是,对于Axios,组件数据始终是未定义的。如果我不使用Axios(对返回值进行硬编码),则组件数据将正确填充。

data () {
    return {
        myData: this.getData();
    }
},

methods:{
    getData(){
        axios({
          method: 'GET',
          url   : 'Department/GetAllForDropdown',
        }).then(function (response){
            return response.data;
        });
    }
}

如何在不使用常规填充方式(例如

.then(function (response){
    self.myData = response.data;
})

谢谢。

======= EDIT =======

我有一个动态的表单生成器。我正在使用vuetify。它根据我声明的数据创建表单组件。

<template>
    <div v-for="formItem in formDetails.formInfo">
        <v-text-field 
        v-if="formItem.type != 'select'
        :label="formItem.placeholder"
        v-model="formItem.value"
        ></v-text-field>

        <v-select
        v-if="formItem.type == 'select'
        :items="formItem.options"
        :label="formItem.placeholder"
        v-model="formItem.value"
        ></v-select>
    </div>
</template>


data () {
    return {
        formDetails: {
            title: 'myTitle',
            formInfo:[
                {
                  type:'text',
                  placeholder:'Name*',
                  value: '',
                },
                {
                  type:'select',
                  placeholder:'Option1*',
                  options: this.getOptions1(),
                  value: '',
                },
                {
                  type:'select',
                  placeholder:'Option2*',
                  options: this.getOptions2(),
                  value: '',
                },
            ]
        },
    }
},

methods:{
    getOptions1(){
        var self = this;
        axios({
          method: 'GET',
          url   : 'Department1/GetAllForDropdown',
        }).then(function (response){
            return response.data;
        });
    },
    getOptions2(){
        var self = this;
        axios({
          method: 'GET',
          url   : 'Department2/GetAllForDropdown',
        }).then(function (response){
            return response.data;
        });
    }
} 

我目前坚持让选择框动态化,因为我计划传递

之类的选项。
options: this.getOptions1(),

让他们在选择框中获得所有选项。

谢谢。

1 个答案:

答案 0 :(得分:1)

该想法仍然是将响应分配给该项目,并在加载时保留一个占位符。

getOptions(formItem) {
  formItem.loading = true;
  var placeholder = formItem.placeholder;
  formItem.placeholder = "Loading... Please wait";
  axios({
    method: "GET",
    url: "Department1/GetAllForDropdown"
  }).then(function(response) {
    formItem.loading = false;
    formItem.placeholder = placeholder;
    formItem.options = response.data;
  });
}

我写了一个小demo。您可以尝试一下。