Vue.js Axios发布未返回JSON格式。我如何在Controller上捕获它?

时间:2019-01-21 23:56:04

标签: laravel vue.js axios

使用Vue.Js和Laravel开发标签系统。我的输出axios post函数正在渲染一个类似图片中的简单值,而不是JSON格式。

我曾经在 Controller 中从JSON捕获值,例如:

$exemple->name=$request->name

但是,在这种情况下,它不起作用。有什么帮助吗?谢谢

编辑

这是我的axios帖子。

  function Newtag(i){
     axios.post('/addtags', $this.tags[i].text)
        .then(function(response) {
          currentObj.output = response.data;
          if ($this.tags[i].text.toLowerCase() == 
          response.data[0].itemValue.toLowerCase()) {
          $this.filteredItems.push($this.tags[i]);
          }
          })
   .catch(function(error) {
  console.log(error);
 });
 }

enter image description here

0 个答案:

没有答案