获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
小程序开发工具里可以使用 `new globalThis.URL()`,但真机上不支持。需要导入 `core-js` 的 `url` polyfill。 // app.ts import './lib/corejs-url.js' `corejs-url.js` 的生成请参考: https://gist.github.com/xuxucode/c917fd9d260fc71b54fac9b14c11f4f0
微信小程序不支持 new URL吗?let url=new URL("https://developer.mozilla.org/en-US/docs/Web/API/URL/pathname"); console.log(url.pathname);
2023-08-21