@acifani/url-polyfill 中文文档教程
Polyfill URL and URLSearchParams to match last WHATWG specifications
在大多数用例中兼容,但不是 100%(如 unicode 字符、punycode 等)
在 IE 10+
Install
npm i url-polyfill --save
Currently supported
window.URL
文档上测试:https://developer.mozilla.org/en-US/docs/Web/API/URL
支持:'hash'、'host'、'hostname'、'href'、'port'、'protocol'、'search'、'toString'、'pathname'、'origin'、'searchParams'
示例:
const url = new URL('https://www.example.com:8080/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
- hash:
"page0"
- host:
"www.example.com:8080"
- hostname:
"www.example.com"
- href:
"https://www.example.com:8080/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0"
- origin:
"https://www.example.com:8080"
- pathname:
"/"
- port:
"8080"
- protocol:
"https:"
- search:
"?fr=yset_ie_syc_oracle&type=orcl_hpset"
- searchParams: URLSearchParams (see next)
window.URLSearchParams
文档:https ://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams
支持:'append', 'delete', 'get', 'getAll', 'has', 'set', 'forEach', 'keys', 'values', 'entries', 'toString', 'Symbol.iterator'
示例:
const url = new URL('https://www.example.com/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
url.searchParams.append('page', 0);
console.log(url.toString()); // print: "https://www.example.com/?fr=yset_ie_syc_oracle&type=orcl_hpset&page=0#page0"
Polyfill URL and URLSearchParams to match last WHATWG specifications
Compliant in most of the use cases but not at 100% (like unicode chars, punycodes, etc…)
Tested on IE 10+
Install
npm i url-polyfill --save
Currently supported
window.URL
Documentation: https://developer.mozilla.org/en-US/docs/Web/API/URL
Supported : 'hash', 'host', 'hostname', 'href', 'port', 'protocol', 'search', 'toString', 'pathname', 'origin', 'searchParams'
Example:
const url = new URL('https://www.example.com:8080/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
- hash:
"page0"
- host:
"www.example.com:8080"
- hostname:
"www.example.com"
- href:
"https://www.example.com:8080/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0"
- origin:
"https://www.example.com:8080"
- pathname:
"/"
- port:
"8080"
- protocol:
"https:"
- search:
"?fr=yset_ie_syc_oracle&type=orcl_hpset"
- searchParams: URLSearchParams (see next)
window.URLSearchParams
Documentation: https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams
Supported : 'append', 'delete', 'get', 'getAll', 'has', 'set', 'forEach', 'keys', 'values', 'entries', 'toString', 'Symbol.iterator'
Example:
const url = new URL('https://www.example.com/?fr=yset_ie_syc_oracle&type=orcl_hpset#page0');
url.searchParams.append('page', 0);
console.log(url.toString()); // print: "https://www.example.com/?fr=yset_ie_syc_oracle&type=orcl_hpset&page=0#page0"
你可能也喜欢
- 4dlcd 中文文档教程
- @0xllllh/react-krpano 中文文档教程
- @17cliu/eslint-config-personal 中文文档教程
- @1ziton/react-native-baidulocation 中文文档教程
- @2-imooc-cli-dev/util 中文文档教程
- @36node/template-react-redux 中文文档教程
- @42.nl/authentication 中文文档教程
- @4geit/rct-footer-component 中文文档教程
- @4tw/vue-cli-plugin-vuetify-preset-4tw 中文文档教程
- @51npm/freedom-cli 中文文档教程