解决方法是 加上headers
axios({ method: "POST", url: this.serverUrl + "Article/findById", data: this.articleId, headers: { "Content-Type": "text/plain" }, }).then((res) => { this.article = res.data; console.log(res.data); });
2023-09-24 07:53:27
解决方法是 加上headers
axios({ method: "POST", url: this.serverUrl + "Article/findById", data: this.articleId, headers: { "Content-Type": "text/plain" }, }).then((res) => { this.article = res.data; console.log(res.data); });