超简单代码从URL获取查询参数

Object.fromEntries(new URLSearchParams(window.location.search))
// Result: { hello : "nihao", year : 2023 }
  • Object.fromEntries:把键值对列表转换为一个对象,这个方法是和 Object.entries() 相对的。
Object.fromEntries([
    ['foo', 1],
    ['bar', 2]
])
// {foo: 1, bar: 2}

你可能感兴趣的:(前端javascript)