gpt4 book ai didi

javascript - 将过滤器应用于列表并显示数据

转载 作者:行者123 更新时间:2023-12-03 22:19:09 25 4
gpt4 key购买 nike

前端:

 const [searchParameters, setSearchParameters] = useState({
type: "",
country:"",

});

const onChangeSearchType = e => {
const workingObject = {...searchParameters};
workingObject.searchType = e.target.value;
setSearchParameters(workingObject);
};

const onChangeSearchCountry = e => {
const workingObject = {...searchParameters};
workingObject.searchCountry = e.target.value;
setSearchParameters(workingObject);
};


const handleFetchWithSearchParameters = () => {
TutorialDataService.findByParameters(searchParameters)
.then(response => {
setTutorials(response.data);
console.log(response.data);
})
.catch(e => {
console.log(e);
});
}
return() 之后:
<Form.Control as="select" defaultValue=""
type="text"
className="form-control"
id="country"
required
value={searchParameters.country}
onChange={onChangeSearchCountry}
name="country">
<option>Nigeria</option>
<option>Ghana</option>
<option>Kenya</option>
<option>Senegal</option>
</Form.Control>
<Form.Control as="select" defaultValue=""
type="text"
className="form-control"
id="type"
required
value={searchParameters.type}
onChange={onChangeSearchType}
name="type">
<option>Agricultural</option>
<option>Manufacturing</option>
<option>Industrial</option>
<option>Livestock</option>
<option>Service Industry</option>
</Form.Control>
<div className="input-group-append">
<button
className="btn btn-outline-secondary"
type="button"
onClick={handleFetchWithSearchParameters}
Search
</button>
Service.js :
import http from "../http-common.js";
const findByParameters = searchParameters => {
// This is the destructuring syntax I've linked above
const { type, country, creditscore, interest } = searchParameters;

// Here we use & ampersand to concatinate URL parameters
return http.get(`/tutorials?type=${type}&country=${country}&creditscore=${creditscore}&interest=${interest}`);
};

export default {

findByParameters
};
Controller.js :
// Retrieve all Industries from the database.
exports.findAll = (req, res) => {
const type = req.query.type ;
let condition = type ? { type : { [Op.like]: %${type }% } } : null;

Tutorial.findAll({
where: condition,
order: [ ['createdAt', 'DESC'] ]
})
.then(data => { res.send(data);
})
.catch(err => {
res.status(500).send({ message:err.message || "Some error occurred while retrieving tutorials."
});
}); };
因此,我的网络应用程序的这个页面用于显示保存在我的数据库中的所有公司的列表。
我创建了一个过滤器,允许您通过 findByType 仅显示特定类型的过滤器。
我想插入其他过滤器,例如: findByRevenuefindByEmployeesNumber
我不知道我是否应该为每种情况在前端和后端编写新函数?或者有更聪明的方法吗?
此外,过滤器不必单独工作,它们还需要组合在一起以改进您的搜索。我希望我已经很好地解释了它应该如何工作,就像任何电子商务网站一样。
编辑:我按照建议更改了代码,但我仍然遇到问题。它不再让我使用输入表单。事实上,请求是空的,例如:
type = ""
country = ""
我想我的 input.value = 有问题

最佳答案

只是一个意见:我会稍微修改前端和后端以支持组合请求。您可以使用不同的参数将 JavaScript 对象(作为 JSON)发送到您的 API,并在后端 Controller 函数中应用检查。
所以基本上,而不是分开

 const findByType = () => {...}
const findByRevenue = () => {...}
const findByEmployeesNumber = () => {...}

我会使用(状态可以是一个单一的对象,就像下面的例子一样,或者在发送到 API 时分离然后组装成一个对象)
   const [searchParameters, setSearchParameters] = useState({
type: '',
revenue: '',
employeesNumber: ''
});

const onChangeSearchType = e => {
const workingObject = {...searchParameters};
const workingObject.searchType = e.target.value;
setSearchParameters(workingObject);
};

// same logic for onChangeRevenue and onChangeEmployeesNumber

const handleFetchWithSearchParameters = () => {
TutorialDataService.findByParameters(searchParameters)
.then(response => {
setTutorials(response.data);
console.log(response.data);
})
.catch(e => {
console.log(e);
});
}
然后在 Controller 中,我会破坏查询对象并针对它运行查询

关于javascript - 将过滤器应用于列表并显示数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64896905/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com