[HttpPost] [Route("[action]")] public IActionResult PostUserToken(string strQingQiuData) { string strToken = _ICustomJWTService.PostToken(strQingQiuData); if (string.IsNullOrEmpty(strToken) == false) { return new JsonResult(new ApiResult<object>() { Success = true, Message = "", Data = strToken }); } else { return new JsonResult(new ApiResult<object>() { Success = false, Message = "医院信息不存在,或加密值有误!" }); } } 根据这后端编写一个VUE axios的请求
时间: 2024-01-23 18:02:09 浏览: 136
C_minus语言词法分析器
4星 · 用户满意度95%
可以尝试如下的代码:
```
axios.post('/PostUserToken', { strQingQiuData: 'your_request_data' })
.then(function (response) {
console.log(response.data);
// handle success
})
.catch(function (error) {
console.log(error);
// handle error
});
```
其中,`'/PostUserToken'` 是后端接口的路由地址,`{ strQingQiuData: 'your_request_data' }` 是请求体数据,可以根据实际情况修改。另外,需要在 Vue 中引入 axios 库。
阅读全文