请求 视频地址 和 M3U8 地址 的时候,http 请求中会带上自定义的请求头
// 全局拦截器
videojs.Vhs.xhr.beforeRequest = function (options: any) {
let headers = options.headers || {};
headers["headers1"] = "headers1";
headers["headers2"] = "headers2";
headers["token"] = "J2LqH1mnoXE0ZL5typ3VT3n4fe7RFYAO";
options.headers = headers;
console.log("options", options);
return options;
};