更新记录
1.0.4(2023-09-14) 下载此版本
umd
1.0.3(2023-09-05) 下载此版本
修复几处错误
1.0.2(2023-09-05) 下载此版本
使用es6语法
查看更多平台兼容性
uni-app
Vue2 | Vue3 | Chrome | Safari | app-vue | app-nvue | Android | iOS | 鸿蒙 |
---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | - | - | - |
微信小程序 | 支付宝小程序 | 抖音小程序 | 百度小程序 | 快手小程序 | 京东小程序 | 鸿蒙元服务 | QQ小程序 | 飞书小程序 | 快应用-华为 | 快应用-联盟 |
---|---|---|---|---|---|---|---|---|---|---|
√ | √ | √ | √ | √ | √ | - | √ | √ | √ | √ |
其他
多语言 | 暗黑模式 | 宽屏模式 |
---|---|---|
× | × | √ |
cainiao-url
在使用的页面直接引用
npm i url-new --save
import URL from 'url-new'
const url = new URL('https://www.aaa.com:8989/bbb/ccc/ddd.html?e=1&f=2&g#h=3&i=4&j?k=5#l=6&e=4')
console.log(url)
{
"href": "https://www.aaa.com:8989/bbb/ccc/ddd.html?e=1&f=2&g#h=3&i=4&j?k=5#l=6&e=4",
"origin": "https://www.aaa.com",
"protocol": "https:",
"host": "www.aaa.com",
"port": "8989",
"pathname": "/bbb/ccc/ddd.html",
"search": "?e=1&f=2&g&k=5",
"hash": "#h=3&i=4&j&l=6&e=4",
"params": {
"h": "3",
"i": "4",
"l": "6",
"e": "1",
"f": "2",
"k": "5"
}
}