@ApiOperation(value = "保存用户号码") @PutMapping("/saveUserPhone") public JsonData<String> saveUserPhone(@RequestParam("code") String code,@RequestParam("encryptedData") String encryptedData, @RequestParam("iv") String iv)前端如何传值
时间: 2024-01-28 14:03:42 浏览: 141
mybatis-plus使用@EnumValue处理枚举类型的示例代码
前端可以使用 `axios` 或者 `fetch` 等方式发送 PUT 请求,将 `code`、`encryptedData` 和 `iv` 作为请求参数传递给后端。示例代码如下:
```javascript
axios.put('/saveUserPhone', {
params: {
code: 'xxx',
encryptedData: 'xxx',
iv: 'xxx'
}
}).then(response => {
console.log(response.data);
}).catch(error => {
console.error(error);
});
```
在上面的代码中,`axios.put` 方法表示发送一个 PUT 请求,`/saveUserPhone` 是请求的 API 地址,`params` 对象中包含了 `code`、`encryptedData` 和 `iv` 三个请求参数。后端可以通过 `@RequestParam` 注解获取这些参数的值。
阅读全文