xgqfrms™, xgqfrms® : xgqfrms's offical website of cnblogs! xgqfrms™, xgqfrms® : xgqfrms's offical website of GitHub!

URL.canParse API All In One

URL.canParse API All In One

// Proper usage
if (URL.canParse('https://davidwalsh.name/pornhub-interview')) {
  const parsed = new URL('https://davidwalsh.name/pornhub-interview');
}

image

https://caniuse.com/?search=canParse

URL Standard

https://url.spec.whatwg.org/

Node.js

https://nodejs.org/api/url.html#urlcanparseinput-base

MDN

The URL.canParse() static method of the URL interface returns a boolean indicating whether or not an absolute URL, or a relative URL combined with a base URL, are parsable and valid.

URL 接口的 URL.canParse() 静态方法返回一个布尔值,指示绝对 URL 或与基本 URL 组合的相对 URL 是否可解析有效

URL.canParse(url)
URL.canParse(url, base)

image

https://developer.mozilla.org/en-US/docs/Web/API/URL/canParse_static

demos

URL.canParse() not supported

const logElement = document.getElementById("log");
function log(text) {
  logElement.innerText += `${text}\n`;
}

if ("canParse" in URL) {
  log("Test valid absolute URL");
  let url = "https://developer.mozilla.org/";
  let result = URL.canParse(url);
  log(` URL.canParse("${url}"): ${result}`);

  log("\nTest relative URL with no base URL");
  url = "/en-US/docs";
  result = URL.canParse(url);
  log(` URL.canParse("${url}"): ${result}`);

  log("\nTest relative URL with valid base URL");
  let baseUrl = "https://developer.mozilla.org/";
  result = URL.canParse(url, baseUrl);
  log(` URL.canParse("${url}","${baseUrl}"): ${result}`);
} else {
  log("URL.canParse() not supported");
}

if ("canParse" in URL) {
  log("\nTest relative URL with base URL supplied as a URL object");
  let baseUrl = new URL("https://developer.mozilla.org/");
  let url = "/en-US/docs";
  result = URL.canParse(url, baseUrl);
  log(` URL.canParse("${url}","${baseUrl}"): ${result}`);
}

https://developer.mozilla.org/en-US/play

image

https://twitter.com/stefanjudis/status/1676519268819542016

refs

https://davidwalsh.name/url-canparse

https://github.com/whatwg/url/issues/713



©xgqfrms 2012-2025

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!


posted @   xgqfrms  阅读(70)  评论(1编辑  收藏  举报
相关博文:
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· C#/.NET/.NET Core技术前沿周刊 | 第 29 期(2025年3.1-3.9)
· 从HTTP原因短语缺失研究HTTP/2和HTTP/3的设计差异
历史上的今天:
2022-07-25 Linux file system All In One
2022-07-25 开元路土魠鱼羹 bug All In One
2021-07-25 webpack Public Path All In One
2020-07-25 Chrome blocked third-party cookies
2020-07-25 JavaScript 中如何使用 setTimeout 模拟实现 setInterval All In One
2019-07-25 Service Workers
2019-07-25 IndexedDB All In One
点击右上角即可分享
微信分享提示