我在我的项目中使用 Next.js,我需要创建一个动态查询字符串。我使用这段代码:
const createQuery = (filter) => {
let currentPath = router.pathname;
let filterSize = Object.keys(filter).length;
filterSize != 0 ? (currentPath += "?") : null;
Object.keys(filter).map(function (key, index) {
currentPath +=
key + "=" + filter[key] + (index === filterSize - 1 ? "" : "&");
});
router.push(currentPath);
};
它有效,但我不发送数组来查询字符串。我怎样才能做到这一点?另外,有没有更简单的方法在 Next.js 中创建查询字符串?