[HttpPost] public string Post([FromBody]LoginModel model) { if (model.Account == "longdb" && model.Pw == "123") { return "測試成功"; } return "1222kk"; }
vue.js 使用axios請求該類型接口:
this.$http.post(this.$baseUrl + "/weatherforecast", { Account: "longdb", Pw: "123" }).then(res => { console.log(res.data); res = res.data; });
Postman 填寫對應參數。代碼中LoginModel為類。