setQueryParam

GitHub查看源码
设置或替换 URL 中指定查询参数的值,返回包含更新参数的新 URL 字符串。

用法

setQueryParam 函数用于设置 URL 的查询参数。

import { setQueryParam } from '@movk/core'

setQueryParam('https://example.com', 'page', 1)
// 'https://example.com?page=1'

setQueryParam('https://example.com?page=1', 'page', 2)
// 'https://example.com?page=2'

setQueryParam('https://example.com?page=1', 'sort', 'name')
// 'https://example.com?page=1&sort=name'

API

setQueryParam(url, key, value)

设置 URL 的查询参数。

参数

url
string required
URL 字符串。
key
string required
参数名。
value
QueryParamValue required
参数值。

返回值

返回值
string
新的 URL 字符串。

Changelog

No recent changes
Copyright © 2024 - 2026 YiXuan - MIT License