悉理

Results 1 issues of 悉理

使用**本地json-server**时,**编辑用户**和**创建用户**操作不生效; 需要在访问request方法时,初始化options参数的headers 文件:**services/user.js** export function patch(id, values) { return request(`/api/users/${id}`, { method: 'PATCH', body: JSON.stringify(values), headers: { "Content-Type": "application/json" }, }); } export function create(values) { return request('/api/users', { method:...