模块化的时候有这样一个问题。
通过自定义元素自制了一个滑块,其中 Shadow DOM 的 CSS 通过 @import 载入了一个外部的样式表。就需要知道 URL。大概这样:
// slider.js
const styleURL = "slider.css";
class SliderDiscrete extends HTMLElement {
constructor () {
super();
const shadow = this.attachShadow({mode: 'open'});
const style = document.createElement('style');
style.innerText = `@import url(${styleURL})`;
shadow.appendChild(style);
...
}
...
}
export default SliderDiscrete;
// main.js
// Custom Element
import SliderDiscrete from './Components/slider/slider.js';
customElements.define('slider-discrete', SliderDiscrete);
我把 .css 和 .js 放在一起了。因为这样看起来好像合理一些。然后,如果 main.js 不传参,或者我自己不把路径写进去,slider.js 里的 SliderDiscrete 是不是就没有办法设 URL 了呢?
不是。网上变来的奇技淫巧有,搞一个 Error 对象。
const getFunctionLocation = function pathToTheScript() {
const error = 0;
const rgx = /(?:http|https|file):\/\/.*?\/.+?.js/;
try {
error.foo();
} catch (e) {
return rgx.exec(e.stack)[0];
}
}
getFunctionLocation(); // "http://127.0.0.1/Components/slider/slider.js"
Chrome 在 Function 里面,有一个 [[FunctionLocation]],不知道能不能 直接 / 间接 获取。
现在是 2018 年了。ES9 都得学了。有什么新方法吗?
Stack Overflow 上的此类问题:
How to get the file-path of the currently executing javascript code
How to get the absolute path of the current javascript file name
翻过高山走不出你
慕码人8056858
相关分类