点击表格下一页时,由于没有搜索参数所以重新加载了全部数据。请问大佬要如何保持点击下一页时保持搜索条件。
// 分页搜索
export function onFetchData(params) {
if (params.from === 'search') {
params.currentPage = 1;
}
this.dataSourceMap['getDate'].load(params);
}
// 条件搜索
export function onSubmit(values) {
const searchFields = {
textField_m4qgcarp: values.textField_m4sjr0tl,
textField_m4tlnsr1: values.textField_m4tnpvey,
};
this.dataSourceMap['getDate'].load({
searchFieldJson: JSON.stringify(searchFields)
}).then((res) => {
console.log("res", res)
}).catch((err) => {
this.utils.toast({ title: '请求失败!' })
console.log(err)
});
}
您好,可以在最开始条件搜索时,就把搜索条件存到变量里。在分页搜索里,调接口时获取下变量里的值一并传递下搜索条件的参数就可以。
// 分页搜索
export function onFetchData(params) {
if (params.from === 'search') {
params.currentPage = 1;
}
this.dataSourceMap['getDate'].load({
searchFieldJson: JSON.stringify(this.state.searchFieldJson),
currentPage: params.currentPage,
pageSize: params.pageSize
}).then((res) => {
console.log("res", res)
}).catch((err) => {
this.utils.toast({ title: '请求失败!' })
console.log(err)
});
}
// 条件搜索
export function onSubmit(values) {
const searchFields = {
textField_m4qgcarp: values.textField_m4sjr0tl,
textField_m4tlnsr1: values.textField_m4tnpvey,
};
//此时存储下搜索参数
this.setState({
searchFields:searchFields
})
this.dataSourceMap['getDate'].load({
searchFieldJson: JSON.stringify(searchFields)
}).then((res) => {
console.log("res", res)
}).catch((err) => {
this.utils.toast({ title: '请求失败!' })
console.log(err)
});
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。