onSubmit() { let params = { name: this.sizeForm.name, beginDate: this.sizeForm.beginDate, endDate: this.sizeForm.endDate, pageNum: 1, pageSize: 10 }; axios.get('http://localhost:8085/LoginAndRegister/fill/selectFill', params).then(response => { console.log(response.data); this.tableData = response.data.rows; this.total = response.data.total; }).catch(error => { console.log(error); }); }, 这段代码哪里不对’
时间: 2024-04-29 15:20:40 浏览: 195
这段代码中,axios.get()方法的第二个参数应该是一个配置对象,而不是一个简单的参数对象。应该将params对象放入配置对象的params属性中,如下所示:
```
axios.get('http://localhost:8085/LoginAndRegister/fill/selectFill', {
params: {
name: this.sizeForm.name,
beginDate: this.sizeForm.beginDate,
endDate: this.sizeForm.endDate,
pageNum: 1,
pageSize: 10
}
}).then(response => {
console.log(response.data);
this.tableData = response.data.rows;
this.total = response.data.total;
}).catch(error => {
console.log(error);
});
```
另外,在使用axios进行网络请求时,需要注意跨域问题。如果接口地址和前端页面不在同一个域名下,需要在后端进行CORS配置或使用代理来解决跨域问题。
相关问题
// 分页 handleSizeChange(val) { this.pageSize = val this.handleNodeClick() }, handleCurrentChange(val) { this.page = val this.handleNodeClick() }, async getTreeListList() { const { data } = await businessTreeApi() this.departlist = JSON.parse(data.data) }, // 右侧上部分信息 async handleNodeClick(type) { console.log(type) if (type) { this.id = type.id } const List = (await businessApi(this.id)).data.data // this.datalist.agentId = type.id ? type.id : id // console.log(this.datalist) // const {data}= await courierPagingApi(this.datalist) // console.log(data); console.log(List) if (List.type === 1) { this.form.type = '一级转运中心' } else if (List.type === 2) { this.form.type = '二级转运中心' } else this.form.type = '营业部' this.form.number = List.id // v-model 数字 // this.form.type=List.type==3?'营业部':'', // 类型 this.form.name = List.name // 名字 this.form.region = List.province.name // 省 this.form.city = List.city.name // 城市 this.form.county = List.county.name // 县区 this.form.address = List.address // 详细地址 this.form.people = List.managerName // 负责人 this.form.phone = List.phone // 电话 this.form.longitude = List.longitude // 经度 this.form.latitude = List.latitude // 维度 // ------------------------------------ let obj = { page: this.page, pageSize: this.pageSize, agencyId: this.id } // 页码 const { data } = await getUserPageApi(obj) this.total = data.data.counts console.log(data.data) this.tableData = data.data.items this.total = Number(data.data.counts) // 下拉框数据 const res = await editAreasApi() console.log(res) this.economize = res.data.data if (this.value) { const ress = await editAreasApi(this.value) console.log(ress) } }, onSubmit() { this.isOk = !this.isOk } // 编辑数据 }
这段代码是关于一个树形结构的页面分页展示和编辑数据的处理,其中包括以下几个方法:
1. `handleSizeChange(val)`:处理每页展示数据量的变化,并调用`handleNodeClick()`方法重新渲染数据。
2. `handleCurrentChange(val)`:处理当前页码的变化,并调用`handleNodeClick()`方法重新渲染数据。
3. `getTreeListList()`:获取树形结构的数据,并将其解析为JSON格式。
4. `handleNodeClick(type)`:处理节点的点击事件,并根据节点类型展示对应的数据。同时,根据当前节点的ID,获取该节点下的用户数据,并展示在页面中。另外,还会获取下拉框数据。
5. `onSubmit()`:处理编辑数据的提交事件。
总体来说,这段代码实现了一个树形结构的页面展示和编辑数据的功能。
formDataRef.value.validate(async (valid) => { console.log(valid); if (!valid) { console.log("invalid"); return; } console.log("onSubmit"); let params = {}; Object.assign(params, formData.value); // 注册 if (opType.value === 0 || opType.value === 2) { params.password = params.registerPassword; // delete params.registerPassword; // delete params.reRegisterPassword; } // 登录 if (opType.value === 1) { let cookieLoginInfo = proxy.VueCookies.get("loginInfo"); let cookiePassword = cookieLoginInfo == null ? null : cookieLoginInfo.password; if (params.password !== cookiePassword) { params.password = md5(params.password); } } let url = null; if (opType.value === 0) { url = api.register; } else if (opType.value === 1) { url = api.login; } else if (opType.value === 2) { url = api.resetPassword; } let result = await proxy.Request({ url: url, params: params, errorCallback: () => { changeCheckCode(0); } }); if (!result) { return; } if (opType.value === 0) { proxy.Message.success("注册成功,请登录"); showPanel(1); } else if (opType.value === 1) { if (params.rememberMe) { const loginInfo = { email: params.email, password: params.password, rememberMe: params.rememberMe }; proxy.VueCookies.set("loginInfo", loginInfo, "7d"); } else { proxy.VueCookies.remove("loginInfo"); } proxy.Message.success("登录成功"); // 存储cookie proxy.VueCookies.set("userInfo", result.data, 0); // 重定向到原始页面 const redirectUrl = route.query.redirectUrl || "/"; router.push(redirectUrl); } else if (opType.value === 2) { proxy.Message.success("重置密码成功,请登录"); showPanel(1); } });这段代码为什么opType=0无法发送网络请求
这段代码中的 `opType` 是一个变量,其值可能是0、1或2,用于表示操作类型:0表示注册,1表示登录,2表示重置密码。在这里,当 `opType` 的值等于0时,会发送一个名为 `url` 的请求到接口 `api.register`,但是没有足够的上下文来判断为什么无法发送网络请求。
您可以检查以下事项:
1. 请确保 `formDataRef` 中的数据已被正确填充。您可以在控制台中使用 `console.log()` 来检查 `formDataRef.value` 中的数据是否正确。
2. 确保接口 `api.register` 存在并且可以正常访问。您可以在浏览器中尝试访问该接口并检查返回的响应是否正确。
3. 检查您的网络连接是否正常。如果您的网络连接存在问题,则无法发送网络请求。
如果上述解决方案无法解决您的问题,请提供更多上下文信息以便我更好地理解您的问题。
阅读全文