Xhr ответ не будет отображен или изменен на сообщение - PullRequest
0 голосов
/ 03 сентября 2018

Я хочу изменить данные ответа на сообщение об успешном завершении или данные не будут отображаться, на самом деле я не знаю, как это сделать. Результат примерно такой:

Изображение:

result what i got

Я хочу изменить или не отображается так:

i want to like this

Код:

    fetchPosts() {
          let filterData = JSON.stringify(this.filterForm);
          let url ='/admin/product_index_vue?page='+this.pagination.current_page;
          if (this.filterForm.color.length > 0 || this.filterForm.productType.length > 0 || this.filterForm.sortBy != "") {
            url = '/admin/product_index_vue?page='+this.pagination.current_page+'&filter='+filterData;
          }

        axios.get(url)
            .then(response => {
              this.products=response.data.products.data;
              this.productcolors =response.data.productcolors;
              this.categories=response.data.categories;
              this.pagination = response.data.pagination;
              this.path = response.data.products.path;
              this.productsizes = response.data.productsizes;
            })
            .catch(error => {
                console.log(error.response.data);
            });


   },
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...