CINXE.COM
<!-- /*check-keyword-disabled*/ --> <!-- v3/course/alive 专用模板页 --> <!DOCTYPE html> <html lang="zh-cmn-Hans" style="height: 100%"> <head> <script> !(function () { console.log("live-h5"); //检测是否是https协议的url链接,如果不是就跳转到https的链接 var url = window.location.href; if (url.indexOf("https") === -1) { url.replace("http:", "https:"); window.location.replace(url); } var showlog = ["2929", "showVconsole", "inside", "test"].some(function (e) { return window.location.href.indexOf(e) > -1; }); if (!showlog) { console.log = function () {}; console.time = function () {}; console.table = function () {}; console.warn = function () {}; console.info = function () {}; } })(); </script> <script src="https://res.wx.qq.com/open/js/jweixin-1.6.0.js" async></script> <script src="https://open.work.weixin.qq.com/wwopen/js/jwxwork-1.0.0.js" async></script> <!-- <script type="text/javascript" src="https://static-resource-cos-1252524126.cdn.xiaoeknow.com/xiaoe-cnpm/pro/teenager-dialog/0.0.2/teenagerDialog/index.js" async ></script> --> <script> /** * 获取 alive_id 和 app_id * @return { Object } 一个包含 aliveId 和 appId 的对象 * */ function getAliveIdAndAppId() { // 默认返回对象 var defualtRe = { aliveId: "", appId: "" }; // 先行使用数据异常性检查, 存在异常则抛出默认返回对象 try { var pathname = window.location.pathname; var pathnameArr = pathname.split("/"); if (pathname.length === 0) { throw RangeError("[getAliveIdAndAppId]: 异常传值 url 值, url pathname 不能为空!"); } } catch (e) { // todo 上报错误 // ... console.error(e); return defualtRe; } // 正则查 appid 和 aliveid var host = window.location.host; // 取 alive_id var pathnameArr = window.location.pathname.split("/"); var particularPlace = pathnameArr[pathnameArr.length - 1]; var aliveId; // 判断第二个元素是否为 '_', 这里这么判断的原因是 h5 链接 alive_id 是以 l_xxx 的格式直接给出 // 这么写死的原因在于为了求稳不能使用正则匹配, 虽然我不理解正则匹配为啥会比直接取特定位更不稳定 if (particularPlace[1] === "_") { aliveId = particularPlace; } if (!("URLSearchParams" in window)) { // URLSearchParams 的垫片 var searchParams = function (url) { var searchParams = {}; var urlParts = url.split("?"); if (urlParts.length > 1) { var params = urlParts[1].split("&"); for (var i = 0; i < params.length; i++) { var param = params[i].split("="); searchParams[param[0]] = param[1]; } } return { forEach: function (callback) { for (var key in searchParams) { callback(searchParams[key], key); } } }; }; window.URLSearchParams = searchParams; } // 取请求参数中的 app_id var appId_domain; var searchParamObj = {}; try { new URLSearchParams(window.location.search).forEach(function (value, key) { searchParamObj[key] = value; }); } catch (e) { console.error("[getAliveIdAndAppId]: url 解析异常", e); } if (searchParamObj.hasOwnProperty("app_id")) { appId_domain = searchParamObj["app_id"]; } // 若前面存在 aliveId 取值为 undefined 的情况则判断当前路由为 contentpage url if (aliveId === undefined) { var decodePathname = window.location.pathname.split("/"); var base64Data = decodePathname[decodePathname.length - 1]; var decodeUrl = window.atob(base64Data); var decodeDataObj = JSON.parse(decodeUrl); if (decodeDataObj.hasOwnProperty("resource_id")) { aliveId = decodeDataObj["resource_id"]; } if (decodeDataObj.hasOwnProperty("app_id")) { appId_domain = decodeDataObj["app_id"]; } } // 取 域名中的 app_id var hostArr = host.split("."); var appId_routing = hostArr[0]; return { aliveId: aliveId || "", appId: (appId_domain !== undefined ? appId_domain : appId_routing) || "" }; } /** * 抽取上报为统一方法 * uuid_variableLength - 可指定特定生成长度与指定密文的 uuid * * @function * @param { number } [len = 32] - 生成的 uuid 长度 * @param { string } [cipher = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'] - 提供的随机密文 * */ var uuid_variableLength = function (len, cipher) { var len = len || 32; var cipher = cipher || "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"; var uuid = []; var chars = cipher.split(""); for (var i = 0; i < len; i++) { uuid[i] = chars[0 | (Math.random() * chars.length)]; } return uuid.join(""); }; var session_id = uuid_variableLength(); // 生成一个 32 位长, 以 0-9、a-z、A-Z 为随机密文的 uuid window["enterAliveSessionId"] = session_id; // 统计忽略掉刷新的用户,ID 存到全局而不是 storage。 function doImgReport(session_id, queryObj) { var result = []; var reportQuery = ""; // 根据环境决定使用哪个上报地址 var report_url = "https://alivereport.xiaoeknow.com/report/alive_information?"; var environmentEnum = { ".inside.": "https://live-callback.inside.xiaoeknow.com/report/alive_information?", ".test.": "http://134.175.50.30:9996/report/alive_information?" }; // 选取上报地址 for (var i in environmentEnum) { if (window.location.origin.indexOf(i) > -1) { report_url = environmentEnum[i]; } } // query参数处理 for (var key in queryObj) { result.push(key + "=" + queryObj[key]); } reportQuery = result.join("&"); // 利用img标签跨域上报 var _img = new Image(); var log_name = "log_" + session_id + "_" + +new Date(); window[log_name] = _img; _img.onload = _img.onerror = _img.onabort = function () { _img.onload = _img.onerror = _img.onabort = null; _img = window[log_name] = null; }; _img.src = report_url + reportQuery; } /* 错误上报level { level: '1', name: '接口请求日志(白名单日志)' }, { level: '2', name: '一般日志(aegis.info 或者 aegis.infoAll)' }, { level: '4', name: 'JS 执行错误' }, { level: '8', name: 'Promise 错误' }, { level: '16', name: 'Ajax 请求异常' }, { level: '32', name: 'JS 加载异常' }, { level: '64', name: '图片加载异常' }, { level: '128', name: 'css 加载异常' }, { level: '256', name: 'console.error (未启用)' }, { level: '512', name: '音视频资源异常' }, { level: '1024', name: 'retcode 异常' }, -------------不上报 { level: '2048', name: 'aegis report' }, { level: 4096, name: 'PV' }, { level: 8192, name: '自定义事件' }, { level: 16384, name: '小程序 页面不存在' }, { level: 32768, name: 'websocket错误' }, */ var logLevelArr = [ "1", "2", "4", "8", "16", "32", "64", "128", "256", "512", "2048", 4096, 8192, 16384, 32768 ]; // 动态引入script,将会在 window 上挂载 Aegis 构造函数 var script = document.createElement("script"); script.src = "https://commonlib.cdn.xiaoeknow.com/aegis/1.38.33/aegis.min.js"; document.head.appendChild(script); script.onload = function () { // 是否需要aegis上报,主要根据评分的秒数评估 var isNeedReport = function (params, type) { // 为了获取异常情况的1%的数据上报,做个随机采样,获取[0,99] if (type === "performance") { if (params.firstScreenTiming >= 5000) return false; } else if (type === "vitals") { if (params.LCP >= 5000 || params.CLS >= 0.5) return false; } return true; }; var origin = window.location.origin; if ( (origin.indexOf("xiaoeknow.com") > -1 || origin.indexOf("xe-live.com") > -1) && origin.indexOf("inside") === -1 && origin.indexOf("test") === -1 ) { var aegis = new Aegis({ // 区分v3 id: "okLXeFbapG3O8xRQeK", // 上报 id beforeRequest: function (data) { /* 上报的data数据 类型有whiteList、performance、pv、vitals、log、speed,对应数据结构如下: // 页面测速 { logType: "performance", logs: { contentDownload: 2, dnsLookup: 0, domParse: 2750, firstScreenTiming: 25818, resourceDownload: 1070, ssl: 0, tcp: 1, ttfb: 0, } } // 网站性能评估web vitals { logType: "vitals", logs: { CLS: 0.01, FCP: 1000, FID: -1, LCP: 2500, } } */ // 只上报错误日志 文档 https://cloud.tencent.com/document/product/1464/58557 // 当 logType 为 'log' 时,logs 数据类型为 {msg: "日志详情", level: '4', ext1: '', ext2: '', ext3: '', trace: ''}。 if (data.logType === "log" && data.logs && !!~logLevelArr.indexOf(data.logs.level)) { // 把拉流的404不上报 var msg = data.logs.msg || ""; if (!!~msg.indexOf(".m3u8") && !!~msg.indexOf("res status: 404")) { return false; } else if ( !!~msg.indexOf("Uncaught ReferenceError: u is not defined") || !!~msg.indexOf("Uncaught ReferenceError: c is not defined") ) { console.log("不上报日志", msg); return false; } return data; } else if ( data.logType === "performance" && data.logs && isNeedReport(data.logs, data.logType) ) { return data; } else if (data.logType === "pv") { return data; } else if ( data.logType === "vitals" && data.logs && isNeedReport(data.logs, data.logType) ) { // lcp、fcp等指标数据上报 return data; } // 其他情况不上报 return false; }, uin: "xxx", // 用户唯一 ID(可选) reportApiSpeed: true, // 接口测速 reportAssetSpeed: true, // 静态资源测速 spa: true // spa 应用页面跳转的时候开启 pv 计算 }); console.log("实例化aegis"); } }; script.onerror = function (err) { // TODO 上报aqs // 进入直播间打点上报 var reportLog = function () { try { // 获取 aliveId 和 appId var aliveIDAndAppIdObj = window.getAliveIdAndAppId(); var aliveId = aliveIDAndAppIdObj.aliveId; var appId = aliveIDAndAppIdObj.appId; var errorReportObj = { kpi_key: "live_monitor", kpi_data_type: 1, alive_id: aliveId, app_id: appId, err_msg: JSON.stringify(err) }; window.doImgReport(window["enterAliveSessionId"], errorReportObj); } catch (err) { console.log("上报初始化错误", err); } }; reportLog(); console.log("Error loading " + script.src); // Error loading https://example.com/404.js }; </script> <!--标题--> <title></title> <!--小图标--> <link rel="icon" href="/xiaoe-logo.ico" type="image/x-icon" /> <!--基础的meta信息--> <meta charset="UTF-8" /> <meta name="renderer" content="webkit" /> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0, viewport-fit=cover" /> <meta name="format-detection" content="telephone=no" /> <meta http-equiv="x-dns-prefetch-control" content="on" /> <meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests" /> <link rel="dns-prefetch" href="//assets.cdn.xiaoeknow.com" /> <link rel="dns-prefetch" href="//assets-tx.xet.tech" /> <link rel="dns-prefetch" href="//assets-tx.cdn.xiaoeknow.com" /> <link rel="dns-prefetch" href="//assets-ali.cdn.xiaoeknow.com" /> <!-- 骨架屏样式 --> <style> p, span, div, button, body, html { font-family: PingFang SC, Helvetica, Arial, Roboto, sans-serif; } #rootSkeleton.rootSkeletonFadeout { visibility: hidden; opacity: 0; transition: visibility 0s 0.3s, opacity 0.3s linear; } #rootSkeleton { width: 100%; height: calc(100vh); padding-top: 4.66rem; box-sizing: border-box; position: fixed; top: 0; left: 0; z-index: 10000; opacity: 1; background-color: white; display: flex; flex-direction: column; align-items: center; visibility: visible; transition: opacity 0.3s linear; } #rootSkeleton #rootLoadingWrap { position: relative; display: flex; justify-content: center; height: 2.08rem; width: 2.08rem; background-repeat: no-repeat; background-size: cover; animation: 0.25s ease-in-out showGoose; } @keyframes showGoose { 0% { opacity: 0; } 100% { opacity: 1; } } #rootSkeleton #rootLoadingWrap .rootLoading { position: absolute; bottom: 0.64rem; background-color: rgb(37, 95, 241); height: 0.08rem; width: 0.08rem; border-radius: 0.03rem; margin: 0 0.09rem; transform-origin: left bottom; transform: translateZ(0); -webkit-transform: translateZ(0); } #rootSkeleton #rootLoadingWrap .rootLoading:nth-child(1) { left: 0.49rem; animation: 0.9s ease-in-out 0.15s root-loading-run infinite; } #rootSkeleton #rootLoadingWrap .rootLoading:nth-child(2) { left: 0.66rem; animation: 0.9s ease-in-out 0.25s root-loading-run infinite; } #rootSkeleton #rootLoadingWrap .rootLoading:nth-child(3) { left: 0.83rem; animation: 0.9s ease-in-out 0.35s root-loading-run infinite; } #rootSkeleton #rootLoadingWrap .rootLoading:nth-child(4) { left: 1rem; animation: 0.9s ease-in-out 0.45s root-loading-run infinite; } #rootSkeleton #rootTimeoutTip { display: flex; flex-direction: column; align-items: center; visibility: hidden; } #rootSkeleton #rootTimeoutTip p { margin-top: 0.08rem; font-size: 0.28rem; color: #999999; } #rootSkeleton #rootTimeoutTip button { width: 1.44rem; height: 0.48rem; border-radius: 0.4rem; border: 0.01rem solid rgba(204, 204, 204, 1); background: none; font-size: 0.24rem; font-weight: 500; color: rgba(51, 51, 51, 1); } @keyframes root-loading-run { 0%, 40%, 100% { } 25% { transform: scaleY(3.3); -webkit-transform: scaleY(3.3); } } </style> </head> <body ondblclick="return false;"> <div id="application"></div> <div id="rootSkeleton"> <div id="rootLoadingWrap"> <div class="rootLoading"></div> <div class="rootLoading"></div> <div class="rootLoading"></div> <div class="rootLoading"></div> </div> <div id="rootTimeoutTip"> <p>加载速度较慢,请刷新重试</p> <button>刷新</button> </div> </div> <input id="initData" type="hidden" value="[]" /> </body> <!-- prettier-ignore --> <script> // 加载js资源逻辑,真实逻辑在v3.js "use strict";function _typeof(t){return _typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},_typeof(t)}function ownKeys(t,e){var r=Object.keys(t);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(t);e&&(n=n.filter(function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable})),r.push.apply(r,n)}return r}function _objectSpread(t){for(var e=1;e<arguments.length;e++){var r=null!=arguments[e]?arguments[e]:{};e%2?ownKeys(Object(r),!0).forEach(function(e){_defineProperty(t,e,r[e])}):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(r)):ownKeys(Object(r)).forEach(function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(r,e))})}return t}function _defineProperty(t,e,r){return e=_toPropertyKey(e),e in t?Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}):t[e]=r,t}function _regeneratorRuntime(){function t(t,e,r){return Object.defineProperty(t,e,{value:r,enumerable:!0,configurable:!0,writable:!0}),t[e]}function e(t,e,r,o){var i=e&&e.prototype instanceof n?e:n,a=Object.create(i.prototype),c=new f(o||[]);return v(a,"_invoke",{value:u(t,r,c)}),a}function r(t,e,r){try{return{type:"normal",arg:t.call(e,r)}}catch(t){return{type:"throw",arg:t}}}function n(){}function o(){}function i(){}function a(e){["next","throw","return"].forEach(function(r){t(e,r,function(t){return this._invoke(r,t)})})}function c(t,e){function n(o,i,a,c){var u=r(t[o],t,i);if("throw"!==u.type){var s=u.arg,l=s.value;return l&&"object"==_typeof(l)&&m.call(l,"__await")?e.resolve(l.__await).then(function(t){n("next",t,a,c)},function(t){n("throw",t,a,c)}):e.resolve(l).then(function(t){s.value=t,a(s)},function(t){return n("throw",t,a,c)})}c(u.arg)}var o;v(this,"_invoke",{value:function(t,r){function i(){return new e(function(e,o){n(t,r,e,o)})}return o=o?o.then(i,i):i()}})}function u(t,e,n){var o="suspendedStart";return function(i,a){if("executing"===o)throw new Error("Generator is already running");if("completed"===o){if("throw"===i)throw a;return y()}for(n.method=i,n.arg=a;;){var c=n.delegate;if(c){var u=s(c,n);if(u){if(u===k)continue;return u}}if("next"===n.method)n.sent=n._sent=n.arg;else if("throw"===n.method){if("suspendedStart"===o)throw o="completed",n.arg;n.dispatchException(n.arg)}else"return"===n.method&&n.abrupt("return",n.arg);o="executing";var l=r(t,e,n);if("normal"===l.type){if(o=n.done?"completed":"suspendedYield",l.arg===k)continue;return{value:l.arg,done:n.done}}"throw"===l.type&&(o="completed",n.method="throw",n.arg=l.arg)}}}function s(t,e){var n=e.method,o=t.iterator[n];if(void 0===o)return e.delegate=null,"throw"===n&&t.iterator.return&&(e.method="return",e.arg=void 0,s(t,e),"throw"===e.method)||"return"!==n&&(e.method="throw",e.arg=new TypeError("The iterator does not provide a '"+n+"' method")),k;var i=r(o,t.iterator,e.arg);if("throw"===i.type)return e.method="throw",e.arg=i.arg,e.delegate=null,k;var a=i.arg;return a?a.done?(e[t.resultName]=a.value,e.next=t.nextLoc,"return"!==e.method&&(e.method="next",e.arg=void 0),e.delegate=null,k):a:(e.method="throw",e.arg=new TypeError("iterator result is not an object"),e.delegate=null,k)}function l(t){var e={tryLoc:t[0]};1 in t&&(e.catchLoc=t[1]),2 in t&&(e.finallyLoc=t[2],e.afterLoc=t[3]),this.tryEntries.push(e)}function p(t){var e=t.completion||{};e.type="normal",delete e.arg,t.completion=e}function f(t){this.tryEntries=[{tryLoc:"root"}],t.forEach(l,this),this.reset(!0)}function d(t){if(t){var e=t[w];if(e)return e.call(t);if("function"==typeof t.next)return t;if(!isNaN(t.length)){var r=-1,n=function e(){for(;++r<t.length;)if(m.call(t,r))return e.value=t[r],e.done=!1,e;return e.value=void 0,e.done=!0,e};return n.next=n}}return{next:y}}function y(){return{value:void 0,done:!0}}_regeneratorRuntime=function(){return h};var h={},_=Object.prototype,m=_.hasOwnProperty,v=Object.defineProperty||function(t,e,r){t[e]=r.value},g="function"==typeof Symbol?Symbol:{},w=g.iterator||"@@iterator",b=g.asyncIterator||"@@asyncIterator",O=g.toStringTag||"@@toStringTag";try{t({},"")}catch(e){t=function(t,e,r){return t[e]=r}}h.wrap=e;var k={},j={};t(j,w,function(){return this});var x=Object.getPrototypeOf,R=x&&x(x(d([])));R&&R!==_&&m.call(R,w)&&(j=R);var S=i.prototype=n.prototype=Object.create(j);return o.prototype=i,v(S,"constructor",{value:i,configurable:!0}),v(i,"constructor",{value:o,configurable:!0}),o.displayName=t(i,O,"GeneratorFunction"),h.isGeneratorFunction=function(t){var e="function"==typeof t&&t.constructor;return!!e&&(e===o||"GeneratorFunction"===(e.displayName||e.name))},h.mark=function(e){return Object.setPrototypeOf?Object.setPrototypeOf(e,i):(e.__proto__=i,t(e,O,"GeneratorFunction")),e.prototype=Object.create(S),e},h.awrap=function(t){return{__await:t}},a(c.prototype),t(c.prototype,b,function(){return this}),h.AsyncIterator=c,h.async=function(t,r,n,o,i){void 0===i&&(i=Promise);var a=new c(e(t,r,n,o),i);return h.isGeneratorFunction(r)?a:a.next().then(function(t){return t.done?t.value:a.next()})},a(S),t(S,O,"Generator"),t(S,w,function(){return this}),t(S,"toString",function(){return"[object Generator]"}),h.keys=function(t){var e=Object(t),r=[];for(var n in e)r.push(n);return r.reverse(),function t(){for(;r.length;){var n=r.pop();if(n in e)return t.value=n,t.done=!1,t}return t.done=!0,t}},h.values=d,f.prototype={constructor:f,reset:function(t){if(this.prev=0,this.next=0,this.sent=this._sent=void 0,this.done=!1,this.delegate=null,this.method="next",this.arg=void 0,this.tryEntries.forEach(p),!t)for(var e in this)"t"===e.charAt(0)&&m.call(this,e)&&!isNaN(+e.slice(1))&&(this[e]=void 0)},stop:function(){this.done=!0;var t=this.tryEntries[0].completion;if("throw"===t.type)throw t.arg;return this.rval},dispatchException:function(t){function e(e,n){return i.type="throw",i.arg=t,r.next=e,n&&(r.method="next",r.arg=void 0),!!n}if(this.done)throw t;for(var r=this,n=this.tryEntries.length-1;n>=0;--n){var o=this.tryEntries[n],i=o.completion;if("root"===o.tryLoc)return e("end");if(o.tryLoc<=this.prev){var a=m.call(o,"catchLoc"),c=m.call(o,"finallyLoc");if(a&&c){if(this.prev<o.catchLoc)return e(o.catchLoc,!0);if(this.prev<o.finallyLoc)return e(o.finallyLoc)}else if(a){if(this.prev<o.catchLoc)return e(o.catchLoc,!0)}else{if(!c)throw new Error("try statement without catch or finally");if(this.prev<o.finallyLoc)return e(o.finallyLoc)}}}},abrupt:function(t,e){for(var r=this.tryEntries.length-1;r>=0;--r){var n=this.tryEntries[r];if(n.tryLoc<=this.prev&&m.call(n,"finallyLoc")&&this.prev<n.finallyLoc){var o=n;break}}o&&("break"===t||"continue"===t)&&o.tryLoc<=e&&e<=o.finallyLoc&&(o=null);var i=o?o.completion:{};return i.type=t,i.arg=e,o?(this.method="next",this.next=o.finallyLoc,k):this.complete(i)},complete:function(t,e){if("throw"===t.type)throw t.arg;return"break"===t.type||"continue"===t.type?this.next=t.arg:"return"===t.type?(this.rval=this.arg=t.arg,this.method="return",this.next="end"):"normal"===t.type&&e&&(this.next=e),k},finish:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.finallyLoc===t)return this.complete(r.completion,r.afterLoc),p(r),k}},catch:function(t){for(var e=this.tryEntries.length-1;e>=0;--e){var r=this.tryEntries[e];if(r.tryLoc===t){var n=r.completion;if("throw"===n.type){var o=n.arg;p(r)}return o}}throw new Error("illegal catch attempt")},delegateYield:function(t,e,r){return this.delegate={iterator:d(t),resultName:e,nextLoc:r},"next"===this.method&&(this.arg=void 0),k}},h}function _objectWithoutProperties(t,e){if(null==t)return{};var r,n,o=_objectWithoutPropertiesLoose(t,e);if(Object.getOwnPropertySymbols){var i=Object.getOwnPropertySymbols(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||Object.prototype.propertyIsEnumerable.call(t,r)&&(o[r]=t[r])}return o}function _objectWithoutPropertiesLoose(t,e){if(null==t)return{};var r,n,o={},i=Object.keys(t);for(n=0;n<i.length;n++)r=i[n],e.indexOf(r)>=0||(o[r]=t[r]);return o}function _slicedToArray(t,e){return _arrayWithHoles(t)||_iterableToArrayLimit(t,e)||_unsupportedIterableToArray(t,e)||_nonIterableRest()}function _nonIterableRest(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}function _unsupportedIterableToArray(t,e){if(t){if("string"==typeof t)return _arrayLikeToArray(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Object"===r&&t.constructor&&(r=t.constructor.name),"Map"===r||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?_arrayLikeToArray(t,e):void 0}}function _arrayLikeToArray(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function _iterableToArrayLimit(t,e){var r=null==t?null:"undefined"!=typeof Symbol&&t[Symbol.iterator]||t["@@iterator"];if(null!=r){var n,o,i,a,c=[],u=!0,s=!1;try{if(i=(r=r.call(t)).next,0===e){if(Object(r)!==r)return;u=!1}else for(;!(u=(n=i.call(r)).done)&&(c.push(n.value),c.length!==e);u=!0);}catch(t){s=!0,o=t}finally{try{if(!u&&null!=r.return&&(a=r.return(),Object(a)!==a))return}finally{if(s)throw o}}return c}}function _arrayWithHoles(t){if(Array.isArray(t))return t}function _defineProperties(t,e){for(var r=0;r<e.length;r++){var n=e[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(t,_toPropertyKey(n.key),n)}}function _createClass(t,e,r){return e&&_defineProperties(t.prototype,e),r&&_defineProperties(t,r),Object.defineProperty(t,"prototype",{writable:!1}),t}function _toPropertyKey(t){var e=_toPrimitive(t,"string");return"symbol"===_typeof(e)?e:String(e)}function _toPrimitive(t,e){if("object"!==_typeof(t)||null===t)return t;var r=t[Symbol.toPrimitive];if(void 0!==r){var n=r.call(t,e||"default");if("object"!==_typeof(n))return n;throw new TypeError("@@toPrimitive must return a primitive value.")}return("string"===e?String:Number)(t)}function _classCallCheck(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function _inherits(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function");t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,writable:!0,configurable:!0}}),Object.defineProperty(t,"prototype",{writable:!1}),e&&_setPrototypeOf(t,e)}function _createSuper(t){var e=_isNativeReflectConstruct();return function(){var r,n=_getPrototypeOf(t);if(e){var o=_getPrototypeOf(this).constructor;r=Reflect.construct(n,arguments,o)}else r=n.apply(this,arguments);return _possibleConstructorReturn(this,r)}}function _possibleConstructorReturn(t,e){if(e&&("object"===_typeof(e)||"function"==typeof e))return e;if(void 0!==e)throw new TypeError("Derived constructors may only return object or undefined");return _assertThisInitialized(t)}function _assertThisInitialized(t){if(void 0===t)throw new ReferenceError("this hasn't been initialised - super() hasn't been called");return t}function _wrapNativeSuper(t){var e="function"==typeof Map?new Map:void 0;return _wrapNativeSuper=function(t){function r(){return _construct(t,arguments,_getPrototypeOf(this).constructor)}if(null===t||!_isNativeFunction(t))return t;if("function"!=typeof t)throw new TypeError("Super expression must either be null or a function");if(void 0!==e){if(e.has(t))return e.get(t);e.set(t,r)}return r.prototype=Object.create(t.prototype,{constructor:{value:r,enumerable:!1,writable:!0,configurable:!0}}),_setPrototypeOf(r,t)},_wrapNativeSuper(t)}function _construct(t,e,r){return _construct=_isNativeReflectConstruct()?Reflect.construct.bind():function(t,e,r){var n=[null];n.push.apply(n,e);var o=Function.bind.apply(t,n),i=new o;return r&&_setPrototypeOf(i,r.prototype),i},_construct.apply(null,arguments)}function _isNativeReflectConstruct(){if("undefined"==typeof Reflect||!Reflect.construct)return!1;if(Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(t){return!1}}function _isNativeFunction(t){return-1!==Function.toString.call(t).indexOf("[native code]")}function _setPrototypeOf(t,e){return _setPrototypeOf=Object.setPrototypeOf?Object.setPrototypeOf.bind():function(t,e){return t.__proto__=e,t},_setPrototypeOf(t,e)}function _getPrototypeOf(t){return _getPrototypeOf=Object.setPrototypeOf?Object.getPrototypeOf.bind():function(t){return t.__proto__||Object.getPrototypeOf(t)},_getPrototypeOf(t)}function asyncGeneratorStep(t,e,r,n,o,i,a){try{var c=t[i](a),u=c.value}catch(t){return void r(t)}c.done?e(u):Promise.resolve(u).then(n,o)}function _asyncToGenerator(t){return function(){var e=this,r=arguments;return new Promise(function(n,o){function i(t){asyncGeneratorStep(c,n,o,i,a,"next",t)}function a(t){asyncGeneratorStep(c,n,o,i,a,"throw",t)}var c=t.apply(e,r);i(void 0)})}}function loadStaticResourceReport(t){t=t||{};var e=window.enterAliveSessionId;try{var r=window.localStorage.getItem("static_resource_retry")||0,n=document.getElementById("pageJsFileIndex"),o=Object.assign({trace_id:e,kpi_topic:"alive:staticResourceLoadV3",kpi_key:"load_start",kpi_client:"1",alive_id:aliveId,app_id:appId,"params[env]":location.host.includes(".test")?"test":"pro","params[is_downgrade]":0!==r,"params[retry_count]":r,"params[resource_url]":n&&encodeURIComponent(n.src)||"","params[err_msg]":t.err_msg||""},t);t.err_msg&&console.info("%c Load Resource Info: "+(t.kpi_key||"")+" "+t.err_msg,"color: red; background: #000"),window.doImgReport(session_id,o)}catch(t){console.error("[error] loadStaticResourceReport",t)}}function loadResource(t,e){if("script"===t){var r=document.createElement("script");r.src=e;var n=document.getElementsByTagName("script")[0];n.parentNode.insertBefore(r,n)}else if("css"===t){var o=document.createElement("link");o.rel="stylesheet",o.type="text/css",o.href=e,document.getElementsByTagName("head")[0].appendChild(o)}}var _excluded=["type","timeout"],_excluded2=["timeout","type"];Object.assign||Object.defineProperty(Object,"assign",{value:function(t,e){if(null==t)throw new TypeError("Cannot convert undefined or null to object");for(var r=Object(t),n=1;n<arguments.length;n++){var o=arguments[n];if(null!=o)for(var i in o)Object.prototype.hasOwnProperty.call(o,i)&&(r[i]=o[i])}return r},writable:!0,configurable:!0}),window._eReport=!0;var aliveIDAndAppIdObj=window.getAliveIdAndAppId(),aliveId=aliveIDAndAppIdObj.aliveId,appId=aliveIDAndAppIdObj.appId,enterAliveReport=function(t){window.enterAliveTimeStamp=window.performance.now();var e={kpi_topic:"alive:enter",kpi_key:"start_load",kpi_data_type:1,kpi_client:1,trace_id:t};window.doImgReport(t,e),setTimeout(function(){if(window.enterAliveSessionId){var e={kpi_topic:"alive:enter",kpi_key:"load_timeout",kpi_data_type:3,kpi_client:1,trace_id:t};window.doImgReport(t,e),window.reportLoadTimeOut=!0}},5e3)};enterAliveReport(window.enterAliveSessionId);var sdkUser=function(){var t=window.navigator.userAgent.toLowerCase();return t.includes("xiaoeembed")||t.includes("xiaoeapp")&&!t.includes("xiaoeappv1")};setTimeout(function(){var t=document.getElementById("rootLoadingWrap");t&&!sdkUser()?t.style.backgroundImage='url("https://commonresource-1252524126.cdn.xiaoeknow.com/image/l5264kb00nou.png")':t&&sdkUser()&&(t.style.backgroundImage=""),t.style.display="flex"},0),function(){try{setTimeout(function(){loadResource("css","//at.alicdn.com/t/font_511353_tt2yjy5jho.css")},100)}catch(t){console.log("=====> loadOtherResourceHandler error:",t)}}(),function(){var t=document.documentElement,e=window.innerWidth||t.clientWidth,r=7.5;e>=480?e=480:r=7.5;var n="onorientationchange"in window?"orientationchange":"resize";t.style.fontSize=e/r+"px",document.addEventListener("DOMContentLoaded",function(){if(!t.style.fontSize){var e=document.documentElement,n=e.clientWidth;n>=480?n=480:r=7.5,e.style.fontSize=n/r+"px"}},!1),window.addEventListener(n,function(){setTimeout(function(){var t=document.documentElement,e=t.clientWidth;e>=480?e=480:r=7.5,t.style.fontSize=e/r+"px"},200)},!1)}(),_asyncToGenerator(_regeneratorRuntime().mark(function t(){var e,r,n,o,i,a,c,u,s,l,p,f,d,y,h,_,m,v,g,w,b;return _regeneratorRuntime().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return m=function(){return m=_asyncToGenerator(_regeneratorRuntime().mark(function t(e){var o,a,c,u,s,p,f,d,y=arguments;return _regeneratorRuntime().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return o=y.length>1&&void 0!==y[1]?y[1]:"gray",a=[{name:"Index",path:"/js/index.js"},{name:"MainIndex",path:"/js/main-index.chunk.js"}],c=h(e,o),u=c.cdn_domains,s=c.cdn_path,p=i(),f=u[p%u.length],d=new URL(s).pathname,r=0,n=a.length,t.prev=8,t.next=11,Promise.all(a.map(function(t){var e=t.name,r=t.path;return l("".concat(f).concat(d.replace(/https?:/,location.protocol)).concat(r),{id:e,type:o,timeout:3e3})}));case 11:t.next=16;break;case 13:throw t.prev=13,t.t0=t.catch(8),t.t0;case 16:case"end":return t.stop()}},t,null,[[8,13]])})),m.apply(this,arguments)},_=function(t){return m.apply(this,arguments)},h=function(t,e){if("gray"===e)return t;var r=t.system_list[0].page_list[0].cdn_path,n=t.cdn_domains;return{cdn_path:r,cdn_domains:n}},y=function(){return y=_asyncToGenerator(_regeneratorRuntime().mark(function t(){var r,n;return _regeneratorRuntime().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return r="test"===e?"https://assets-test.cdn.xiaoeknow.com/live_h5/stable/data.json":"https://efficacy-tx.cdn.xiaoe-assets.com/live_h5/stable/data.json",t.prev=1,t.next=4,a(r,{type:"static_file",timeout:6e3});case 4:return n=t.sent,console.info("触发灰度服务兜底,请求稳定静态资源列表",n),loadStaticResourceReport({kpi_key:"gray_error_saver",err_msg:"触发灰度服务兜底,加载稳定静态资源","params[static_list]":JSON.stringify(n)}),t.next=9,_(n,"static");case 9:t.next=14;break;case 11:t.prev=11,t.t0=t.catch(1),f(t.t0);case 14:case"end":return t.stop()}},t,null,[[1,11]])})),y.apply(this,arguments)},d=function(){return y.apply(this,arguments)},f=function(t){var e=t.toString().replace(/^(LoadResource)?Error: /,""),r=e.split("::"),n=_slicedToArray(r,2),o=n[0],i=n[1];switch(o){case"fetch_gray_timeout":loadStaticResourceReport({kpi_key:o,err_msg:"请求灰度服务超时: ".concat(i)}),d();break;case"fetch_gray_error":loadStaticResourceReport({kpi_key:o,err_msg:"请求灰度服务异常: ".concat(i)}),d();break;case"fetch_gray_callback_error":loadStaticResourceReport({kpi_key:o,err_msg:"请求灰度接口响应异常: ".concat(i)}),d();break;case"fetch_static_file_timeout":p(),loadStaticResourceReport({kpi_key:o,err_msg:"请求静态资源json超时: ".concat(i)});break;case"fetch_static_file_error":p(),loadStaticResourceReport({kpi_key:o,err_msg:"请求静态列表资源异常: ".concat(i)});break;case"load_script_error":p(),loadStaticResourceReport({kpi_key:o,err_msg:"脚本加载出错: ".concat(encodeURIComponent(document.location.protocol+i))});break;case"load_script_timeout":p(),loadStaticResourceReport({kpi_key:o,err_msg:"脚本加载超时: ".concat(encodeURIComponent(document.location.protocol+i))});break;default:p(),loadStaticResourceReport({kpi_key:"unkonw_error",err_msg:"未知异常: ".concat(t.toString())})}},p=function(){var t=document.getElementById("rootTimeoutTip");if("visible"!==t.style.visibility){document.getElementById("rootTimeoutTip").style.visibility="visible";var e=i();i(e+1),t.querySelector("button").onclick=function(){loadStaticResourceReport({kpi_key:"user_click_reload",err_msg:"用户点击了重试按钮刷新页面"}),setTimeout(function(){window.location.reload()},100)}}},l=function(t,e){var i=e.id,a=void 0===i?"":i,c=e.timeout,u=void 0===c?3e3:c,s=e.type,l=void 0===s?"resource":s;return new Promise(function(e,i){var c=document.createElement("script"),s=encodeURIComponent(t);c.src=t,c.fetchPriority="high",c.id="pageJsFile"+a,document.head.appendChild(c);var p=setTimeout(function(){return i(new o("load_script_timeout::type:".concat(l,";src:").concat(s)))},u);c.onload=function(){r++,console.log("js包加载成功",t),r===n&&loadStaticResourceReport({kpi_key:"load_success",err_msg:"共".concat(n,"个静态资源加载成功")}),clearTimeout(p),e()},c.onerror=function(){console.log("js包加载错误",t),clearTimeout(p),i(new o("load_script_error::type:".concat(l,";src:").concat(s)))}})},s=function(){return s=_asyncToGenerator(_regeneratorRuntime().mark(function t(e,r){var n,i,a,c,u,s,l,p,f;return _regeneratorRuntime().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:return n=r||{},i=n.timeout,a=void 0===i?3e3:i,c=n.type,u=void 0===c?"gray":c,s=_objectWithoutProperties(n,_excluded2),t.prev=1,l=new AbortController,p=new Request(e,{signal:l.signal}),t.next=6,Promise.race([fetch(p,_objectSpread({method:"GET",headers:{"Content-Type":"application/json"}},s)),new Promise(function(t,r){return setTimeout(function(){setTimeout(function(){l.abort()}),r(new o("fetch_".concat(u,"_timeout::src:").concat(e)))},a)})]);case 6:if(f=t.sent,f.ok){t.next=9;break}throw new o("fetch_".concat(u,"_error::src:").concat(e,";status:").concat(f.status));case 9:return t.next=11,f.json();case 11:return t.abrupt("return",t.sent);case 14:if(t.prev=14,t.t0=t.catch(1),!(t.t0 instanceof o)){t.next=20;break}throw t.t0;case 20:throw new o("fetch_".concat(u,"_error::").concat(e));case 21:case"end":return t.stop()}},t,null,[[1,14]])})),s.apply(this,arguments)},u=function(t,e){return s.apply(this,arguments)},c=function(){return c=_asyncToGenerator(_regeneratorRuntime().mark(function t(e){var r,n,i,a,c,s,l=arguments;return _regeneratorRuntime().wrap(function(t){for(;;)switch(t.prev=t.next){case 0:if(r=l.length>1&&void 0!==l[1]?l[1]:{},"function"!=typeof window.fetch){t.next=5;break}return t.abrupt("return",u(e,r));case 5:return n=r.type,i=void 0===n?"gray":n,a=r.timeout,c=void 0===a?3e3:a,s=_objectWithoutProperties(r,_excluded),t.abrupt("return",new Promise(function(t,r){var n,a=new XMLHttpRequest,u=setTimeout(function(){r(new o("fetch_".concat(i,"_timeout::src:").concat(e)))},c);a.open("GET",e,!0),a.setRequestHeader("Content-Type","application/json"),a.onreadystatechange=function(){if(a.readyState===XMLHttpRequest.DONE)if(clearTimeout(u),200===a.status)try{var n=JSON.parse(a.responseText);t(n)}catch(t){r(new o("fetch_".concat(i,"_error::src:").concat(e,";status:").concat(a.status)))}else r(new o("fetch_".concat(i,"_error::src:").concat(e,";status:").concat(a.status)))},a.onerror=function(){clearTimeout(u),r(new o("fetch_".concat(i,"_error::src:").concat(e,";status:").concat(a.status)))},a.send(null!==(n=null==s?void 0:s.body)&&void 0!==n?n:{})}));case 7:case"end":return t.stop()}},t)})),c.apply(this,arguments)},a=function(t){return c.apply(this,arguments)},i=function(t){var e=Date.now(),r="static_resource_retry_info";try{var n=JSON.parse(window.localStorage.getItem(r)),o=n.time,i=n.retryCount;if(!t)return e-parseInt(o,10)>864e5?(window.localStorage.setItem(r,JSON.stringify({time:e,retryCount:0})),0):parseInt(i,10);window.localStorage.setItem(r,JSON.stringify({time:e,retryCount:parseInt(t,10)}))}catch(t){return window.localStorage.setItem(r,JSON.stringify({time:e,retryCount:0})),0}},e=location.host.includes(".test")?"test":"pro",r=0,n=0,o=function(t){function e(t){var n;return _classCallCheck(this,e),n=r.call(this),n.message=t||"",n.name="LoadResourceError",n}_inherits(e,t);var r=_createSuper(e);return _createClass(e)}(_wrapNativeSuper(Error)),loadStaticResourceReport(),t.prev=18,t.next=21,a("/_alive/file_tag_info?system_name=live_h5&page_name=live_h5&from_client=live_h5&gray_app_id=".concat(appId,"&deploy_env=").concat(e));case 21:if(v=t.sent,g=v.code,w=v.data,b=v.message,g){t.next=30;break}return t.next=28,_(w);case 28:t.next=31;break;case 30:throw new Error("fetch_gray_callback_error::code:".concat(g,";message:").concat(b));case 31:t.next=36;break;case 33:t.prev=33,t.t0=t.catch(18),f(t.t0);case 36:case"end":return t.stop()}},t,null,[[18,33]])}))(); </script> </html>