請求 視頻地址 和 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;
};