Node.js:常用工具、GET/POST请求的写法、工具模块

Node.js常用工具

util是一个Node.js的核心模块,用于弥补Javascript过于精简的不足

const util = require("util");

util.callbackify

将 async 异步函数(或者一个返回值为 Promise 的函数)转换成遵循异常优先的回调风格的函数,例如将 (err, value) => … 回调作为最后一个参数。 在回调函数中,第一个参数为拒绝的原因(如果 Promise 解决,则为 null),第二个参数则是解决的值。

const util = require('util');
async function fn(){
    return "Hello World!";
}
const callbackFunction = util.callbackify(fn);
callbackFunction((err, ret)=>{
    if(err) throw err;
    console.log(ret);
});

util.inherits

util.inherits(constructor, superConstructor) 是一个实现对象间原型继承的函数。JavaScript 的面向对象特性是基于原型的,与常见的基于类的不同。JavaScript 没有提供对象继承的语言级别特性,而是通过原型复制来实现的。

var util = require('util');
function Base() {
    this.name = 'base';
    this.base = 1991;
    this.sayHello = function() {
    console.log('Hello ' + this.name);
    };
}
Base.prototype.showName = function() {
    console.log(this.name);
};
function Sub() {
    this.name = 'sub';
}
util.inherits(Sub, Base);
var objBase = new Base();
objBase.showName();
objBase.sayHello();
console.log(objBase);
var objSub = new Sub();
objSub.showName();
//objSub.sayHello();
console.log(objSub);

base
Hello base
Base { name: ‘base’, base: 1991, sayHello: [Function (anonymous)] }
sub
Sub { name: ‘sub’ }

注意,inherits仅仅继承了由原型构造的函数,而内部函数、属性,不会被继承
仅仅通过prototype关键字定义的方法、熟悉才有效


util.inspect

util.inspect(object,[showHidden],[depth],[colors]) 是一个将任意对象转换 为字符串的方法,通常用于调试和错误输出。它至少接受一个参数 object,即要转换的对象。
showHidden 是一个可选参数,如果值为 true,将会输出更多隐藏信息。depth 表示最大递归的层数,如果对象很复杂,你可以指定层数以控制输出信息的多 少。如果不指定depth,默认会递归 2 层,指定为 null 表示将不限递归层数完整遍历对象。 如果 colors 值为 true,输出格式将会以 ANSI 颜色编码,通常用于在终端显示更漂亮 的效果。

var util = require('util');
function Person() {
    this.name = 'byvoid';
    this.toString = function() {
    return this.name;
    };
}
var obj = new Person();
console.log(util.inspect(obj));
console.log(util.inspect(obj, true));

util.isArray(object)

如果给定的参数"object"是一个数组返回true,否则返回false


util.isRegExp(object)

如果字符串是一个正则表达式返回true,否则返回false


util.isDate(object)

如果给定的参数object是一个日期返回true,否则返回false

Node.js GET/POST请求

GET请求
var http = require('http');
var url = require('url');
var util = require('util');
 
http.createServer(function(req, res){
    res.writeHead(200, {'Content-Type': 'text/plain; charset=utf-8'});
    res.end(util.inspect(url.parse(req.url, true)));
}).listen(3000);
解析请求参数

使用url.parse方法来解析URL中的参数,代码如下

var http = require('http');
var url = require('url');
var util = require('util');
 
http.createServer(function(req, res){
    res.writeHead(200, {'Content-Type': 'text/plain'});
 
    // 解析 url 参数
    var params = url.parse(req.url, true).query;
    res.write("网站名:" + params.name);
    res.write("\n");
    res.write("网站 URL:" + params.url);
    res.end();
 
}).listen(3000);
获取POST的内容

POST的内容全部都在请求体中,node.js为了节约资源,默认不会解析请求体,当需要的时候需要来手动来做

var http = require('http');
var querystring = require('querystring');
var util = require('util');
 
http.createServer(function(req, res){
    // 定义了一个post变量,用于暂存请求体的信息
    var post = '';    
 
    // 通过req的data事件监听函数,每当接受到请求体的数据,就累加到post变量中
    req.on('data', function(chunk){    
        post += chunk;
    });
 
    // 在end事件触发后,通过querystring.parse将post解析为真正的POST请求格式,然后向客户端返回。
    req.on('end', function(){    
        post = querystring.parse(post);
        res.end(util.inspect(post));
    });
}).listen(3000);

Node.js 模块

模块给Node.js提供了方便的操作

1.OS模块->提供了系统的操作函数

2.Path模块->提供了处理和转换文件路径的工具

3.Net模块->解决了底层的网络通信,提供了服务端和客户端的操作

4.DNS模块->解析域名

5.Domain模块->简化异步编程的异常梳理,可以捕获处理try catch无法捕捉到的

https://www.runoob.com/nodejs/nodejs-utitlity-module.html

后端跨域@Configuration public class CorsConfig { @Bean public WebMvcConfigurer corsConfigurer() { return new WebMvcConfigurer() { @Override public void addCorsMappings(CorsRegistry registry) { registry.addMapping("/**") // 允许所有路径 .allowedOrigins("*") // 允许所有域(生产环境建议修改) .allowedMethods("GET", "POST", "PUT", "DELETE", "OPTIONS") // 允许的请求方法 .allowedHeaders("*") // 允许所有请求.allowCredentials(true) // 允许携带 Cookie .maxAge(3600); // 1小时内不需要再发送预检请求 } }; } }前端跨域:const { defineConfig } = require('@vue/cli-service') module.exports = { devServer: { proxy: { '/api': { target: 'http://192.168.1.17:8081', // Spring Boot 地址 changeOrigin: true, pathRewrite: { '^/api': '' } } } } } :8080/#/:1 Access to XMLHttpRequest at 'http://192.168.1.17:8081/user/login' from origin 'http://localhost:8080' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. 192.168.1.17:8081/user/login:1 Failed to load resource: net::ERR_FAILED xhr.js:121 Uncaught (in promise) AxiosError handleError @ xhr.js:121 :8080/#/:1 Access to XMLHttpRequest at 'http://192.168.1.17:8081/user/login' from origin 'http://localhost:8080' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Login.js:11 POST http://192.168.1.17:8081/user/login net::ERR_FAILED dispatchXhrRequest @ xhr.js:206 xhr @ xhr.js:26 dispatchRequest @ dispatchRequest.js:61 _request @ Axios.js:196 request @ Axios.js:49 wrap @ bind.js:9 login @ Login.js:11 submit @ index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/LoginView.vue?vue&type=script&lang=js:88 click @ index.js??clonedRuleSet-40.use[0]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/views/LoginView.vue?vue&type=template&id=5c6101e4&scoped=true&class=true:56 invokeWithErrorHandling @ vue.runtime.esm.js:3083 invoker @ vue.runtime.esm.js:1884 invokeWithErrorHandling @ vue.runtime.esm.js:3083 Vue.$emit @ vue.runtime.esm.js:3782 handleClick @ element-ui.common.js:9489 invokeWithErrorHandling @ vue.runtime.esm.js:3083 invoker @ vue.runtime.esm.js:1884 original_1._wrapper @ vue.runtime.esm.js:7547 xhr.js:121 Uncaught (in promise) AxiosError {message: 'Network Error', name: 'AxiosError', code: 'ERR_NETWORK', config: {…}, request: XMLHttpRequest, …} 报错
09-10
Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/page' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/page net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:756 value @ analytics.js:661 value @ analytics.js:520 page @ useTelemetry-Ct6_U3iA.js:24025 (anonymous) @ router-B61V4x5n.js:2901 (anonymous) @ truncate-D8k4BuhS.js:2586 runWithContext @ vue.runtime.esm-bundler-DDuXT-9r.js:3129 runWithContext @ truncate-D8k4BuhS.js:2544 (anonymous) @ truncate-D8k4BuhS.js:2586 triggerAfterEach @ truncate-D8k4BuhS.js:2586 (anonymous) @ truncate-D8k4BuhS.js:2534 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 (anonymous) @ truncate-D8k4BuhS.js:2529 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 pushWithRedirect @ truncate-D8k4BuhS.js:2512 push @ truncate-D8k4BuhS.js:2484 onButtonClick @ ErrorView-C71aquLO.js:27 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 useRootStore-B7yZgeot.js:1774 GET http://120.26.180.183/types/nodes.json 404 (Not Found) dispatchXhrRequest @ useRootStore-B7yZgeot.js:1774 xhr @ useRootStore-B7yZgeot.js:1684 dispatchRequest @ useRootStore-B7yZgeot.js:2088 _request @ useRootStore-B7yZgeot.js:2257 request @ useRootStore-B7yZgeot.js:2169 Axios$1.<computed> @ useRootStore-B7yZgeot.js:2278 wrap @ useRootStore-B7yZgeot.js:456 fetchNodeTypesJsonWithRetry @ useTelemetry-Ct6_U3iA.js:1616 getNodeTypes$1 @ useTelemetry-Ct6_U3iA.js:1623 getNodeTypes$2 @ useTelemetry-Ct6_U3iA.js:13341 loadNodeTypesIfNotLoaded @ useTelemetry-Ct6_U3iA.js:13345 wrappedAction @ useRootStore-B7yZgeot.js:286 initialize @ useCommandBar-DqYIvvAG.js:1867 (anonymous) @ index-B65CCkxp.js:25845 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 baseWatchOptions.call @ vue.runtime.esm-bundler-DDuXT-9r.js:4019 job @ vue.runtime.esm-bundler-DDuXT-9r.js:1170 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 flushJobs @ vue.runtime.esm-bundler-DDuXT-9r.js:1878 Promise.then queueFlush @ vue.runtime.esm-bundler-DDuXT-9r.js:1828 queueJob @ vue.runtime.esm-bundler-DDuXT-9r.js:1824 baseWatchOptions.scheduler @ vue.runtime.esm-bundler-DDuXT-9r.js:4028 effect$1.scheduler @ vue.runtime.esm-bundler-DDuXT-9r.js:1180 trigger @ vue.runtime.esm-bundler-DDuXT-9r.js:1347 endBatch @ vue.runtime.esm-bundler-DDuXT-9r.js:530 notify @ vue.runtime.esm-bundler-DDuXT-9r.js:1416 trigger @ vue.runtime.esm-bundler-DDuXT-9r.js:1409 set value @ vue.runtime.esm-bundler-DDuXT-9r.js:1634 init$1 @ useTelemetry-Ct6_U3iA.js:23940 wrappedAction @ useRootStore-B7yZgeot.js:286 (anonymous) @ router-B61V4x5n.js:1964 await in (anonymous) setCurrentUser @ useTelemetry-Ct6_U3iA.js:3861 loginWithCreds @ useTelemetry-Ct6_U3iA.js:3899 await in loginWithCreds wrappedAction @ useRootStore-B7yZgeot.js:286 login @ SigninView-BAZTYgGU.js:288 onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 useCommandBar-DqYIvvAG.js:1872 Uncaught (in promise) AxiosError$1 {message: 'Request failed with status code 404', name: 'AxiosError', code: 'ERR_BAD_REQUEST', config: {…}, request: XMLHttpRequest, …} settle @ useRootStore-B7yZgeot.js:1458 onloadend @ useRootStore-B7yZgeot.js:1704 XMLHttpRequest.send dispatchXhrRequest @ useRootStore-B7yZgeot.js:1774 xhr @ useRootStore-B7yZgeot.js:1684 dispatchRequest @ useRootStore-B7yZgeot.js:2088 _request @ useRootStore-B7yZgeot.js:2257 request @ useRootStore-B7yZgeot.js:2169 Axios$1.<computed> @ useRootStore-B7yZgeot.js:2278 wrap @ useRootStore-B7yZgeot.js:456 fetchNodeTypesJsonWithRetry @ useTelemetry-Ct6_U3iA.js:1616 getNodeTypes$1 @ useTelemetry-Ct6_U3iA.js:1623 getNodeTypes$2 @ useTelemetry-Ct6_U3iA.js:13341 loadNodeTypesIfNotLoaded @ useTelemetry-Ct6_U3iA.js:13345 wrappedAction @ useRootStore-B7yZgeot.js:286 initialize @ useCommandBar-DqYIvvAG.js:1867 (anonymous) @ index-B65CCkxp.js:25845 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 baseWatchOptions.call @ vue.runtime.esm-bundler-DDuXT-9r.js:4019 job @ vue.runtime.esm-bundler-DDuXT-9r.js:1170 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 flushJobs @ vue.runtime.esm-bundler-DDuXT-9r.js:1878 Promise.then queueFlush @ vue.runtime.esm-bundler-DDuXT-9r.js:1828 queueJob @ vue.runtime.esm-bundler-DDuXT-9r.js:1824 baseWatchOptions.scheduler @ vue.runtime.esm-bundler-DDuXT-9r.js:4028 effect$1.scheduler @ vue.runtime.esm-bundler-DDuXT-9r.js:1180 trigger @ vue.runtime.esm-bundler-DDuXT-9r.js:1347 endBatch @ vue.runtime.esm-bundler-DDuXT-9r.js:530 notify @ vue.runtime.esm-bundler-DDuXT-9r.js:1416 trigger @ vue.runtime.esm-bundler-DDuXT-9r.js:1409 set value @ vue.runtime.esm-bundler-DDuXT-9r.js:1634 init$1 @ useTelemetry-Ct6_U3iA.js:23940 wrappedAction @ useRootStore-B7yZgeot.js:286 (anonymous) @ router-B61V4x5n.js:1964 await in (anonymous) setCurrentUser @ useTelemetry-Ct6_U3iA.js:3861 loginWithCreds @ useTelemetry-Ct6_U3iA.js:3899 await in loginWithCreds wrappedAction @ useRootStore-B7yZgeot.js:286 login @ SigninView-BAZTYgGU.js:288 onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 signin?redirect=%252Ftest:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/track' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/track net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:772 value @ analytics.js:683 value @ analytics.js:539 track @ useTelemetry-Ct6_U3iA.js:24013 trackExperiment @ useTelemetry-Ct6_U3iA.js:23913 (anonymous) @ useTelemetry-Ct6_U3iA.js:23920 trackExperiments @ useTelemetry-Ct6_U3iA.js:23920 trailing.trailing.trailing @ useDebounce-B-oRGfxZ.js:133 invokeFunc @ useDebounce-B-oRGfxZ.js:68 leadingEdge @ useDebounce-B-oRGfxZ.js:74 debounced @ useDebounce-B-oRGfxZ.js:109 init$1 @ useTelemetry-Ct6_U3iA.js:23945 wrappedAction @ useRootStore-B7yZgeot.js:286 (anonymous) @ router-B61V4x5n.js:1964 await in (anonymous) setCurrentUser @ useTelemetry-Ct6_U3iA.js:3861 loginWithCreds @ useTelemetry-Ct6_U3iA.js:3899 await in loginWithCreds wrappedAction @ useRootStore-B7yZgeot.js:286 login @ SigninView-BAZTYgGU.js:288 onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 signin?redirect=%252Ftest:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/identify' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/identify net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:740 value @ analytics.js:712 value @ analytics.js:560 identify @ useTelemetry-Ct6_U3iA.js:24002 (anonymous) @ router-B61V4x5n.js:1963 await in (anonymous) setCurrentUser @ useTelemetry-Ct6_U3iA.js:3861 loginWithCreds @ useTelemetry-Ct6_U3iA.js:3899 await in loginWithCreds wrappedAction @ useRootStore-B7yZgeot.js:286 login @ SigninView-BAZTYgGU.js:288 onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 signin?redirect=%252Ftest:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/track' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/track net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:772 value @ analytics.js:683 value @ analytics.js:539 track @ useTelemetry-Ct6_U3iA.js:24013 login @ SigninView-BAZTYgGU.js:301 await in login onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 test:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/page' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/page net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:756 value @ analytics.js:661 value @ analytics.js:520 page @ useTelemetry-Ct6_U3iA.js:24025 (anonymous) @ router-B61V4x5n.js:2901 (anonymous) @ truncate-D8k4BuhS.js:2586 runWithContext @ vue.runtime.esm-bundler-DDuXT-9r.js:3129 runWithContext @ truncate-D8k4BuhS.js:2544 (anonymous) @ truncate-D8k4BuhS.js:2586 triggerAfterEach @ truncate-D8k4BuhS.js:2586 (anonymous) @ truncate-D8k4BuhS.js:2534 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 push @ truncate-D8k4BuhS.js:2484 login @ SigninView-BAZTYgGU.js:308 await in login onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 test:1 Access to fetch at 'http://120.26.180.183:5678/rest/posthog/flags/?v=2&config=true&ip=0&_=1765512120282&ver=1.303.1&compression=base64' from origin 'http://120.26.180.183' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. array.js:1 POST http://120.26.180.183:5678/rest/posthog/flags/?v=2&config=true&ip=0&_=1765512120282&ver=1.303.1&compression=base64 net::ERR_FAILED 200 (OK) method @ array.js:1 (anonymous) @ array.js:1 ci @ array.js:1 di @ array.js:1 flags @ array.js:1 Br @ array.js:1 _init @ array.js:1 init @ array.js:1 (anonymous) @ array.js:1 Ft @ array.js:1 Mt @ array.js:1 (anonymous) @ array.js:1 (anonymous) @ array.js:1 test:1 Access to fetch at 'http://120.26.180.183:5678/rest/posthog/e/?ip=0&_=1765512120299&ver=1.303.1&compression=gzip-js' from origin 'http://120.26.180.183' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. array.js:1 POST http://120.26.180.183:5678/rest/posthog/e/?ip=0&_=1765512120299&ver=1.303.1&compression=gzip-js net::ERR_FAILED 200 (OK) method @ array.js:1 (anonymous) @ array.js:1 ci @ array.js:1 retriableRequest @ array.js:1 Nr @ array.js:1 capture @ array.js:1 Vr @ array.js:1 (anonymous) @ array.js:1 setTimeout Br @ array.js:1 _init @ array.js:1 init @ array.js:1 (anonymous) @ array.js:1 Ft @ array.js:1 Mt @ array.js:1 (anonymous) @ array.js:1 (anonymous) @ array.js:1 test:1 Access to fetch at 'http://120.26.180.183:5678/rest/posthog/flags/?v=2&config=true&ip=0&_=1765512120320&ver=1.303.1&compression=base64' from origin 'http://120.26.180.183' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource. array.js:1 POST http://120.26.180.183:5678/rest/posthog/flags/?v=2&config=true&ip=0&_=1765512120320&ver=1.303.1&compression=base64 net::ERR_FAILED 200 (OK) method @ array.js:1 (anonymous) @ array.js:1 ci @ array.js:1 di @ array.js:1 callback @ array.js:1 callback @ array.js:1 (anonymous) @ array.js:1 Promise.catch method @ array.js:1 (anonymous) @ array.js:1 ci @ array.js:1 di @ array.js:1 flags @ array.js:1 Br @ array.js:1 _init @ array.js:1 init @ array.js:1 (anonymous) @ array.js:1 Ft @ array.js:1 Mt @ array.js:1 (anonymous) @ array.js:1 (anonymous) @ array.js:1 test:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/track' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/track net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:756 value @ analytics.js:661 value @ analytics.js:520 page @ useTelemetry-Ct6_U3iA.js:24025 (anonymous) @ router-B61V4x5n.js:2901 (anonymous) @ truncate-D8k4BuhS.js:2586 runWithContext @ vue.runtime.esm-bundler-DDuXT-9r.js:3129 runWithContext @ truncate-D8k4BuhS.js:2544 (anonymous) @ truncate-D8k4BuhS.js:2586 triggerAfterEach @ truncate-D8k4BuhS.js:2586 (anonymous) @ truncate-D8k4BuhS.js:2534 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 push @ truncate-D8k4BuhS.js:2484 login @ SigninView-BAZTYgGU.js:308 await in login onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 test:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/identify' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/identify net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:756 value @ analytics.js:661 value @ analytics.js:520 page @ useTelemetry-Ct6_U3iA.js:24025 (anonymous) @ router-B61V4x5n.js:2901 (anonymous) @ truncate-D8k4BuhS.js:2586 runWithContext @ vue.runtime.esm-bundler-DDuXT-9r.js:3129 runWithContext @ truncate-D8k4BuhS.js:2544 (anonymous) @ truncate-D8k4BuhS.js:2586 triggerAfterEach @ truncate-D8k4BuhS.js:2586 (anonymous) @ truncate-D8k4BuhS.js:2534 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 push @ truncate-D8k4BuhS.js:2484 login @ SigninView-BAZTYgGU.js:308 await in login onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 test:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/track' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/track net::ERR_FAILED value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ schedule.js:64 setTimeout setTimeout @ schedule.js:9 (anonymous) @ schedule.js:37 (anonymous) @ index.js:250 (anonymous) @ index.js:13 (anonymous) @ index.js:186 sv.requeue @ index.js:164 done @ index.js:212 (anonymous) @ xhrModule.js:49 XMLHttpRequest.send value @ xhrModule.js:101 (anonymous) @ xhrModule.js:41 (anonymous) @ index.js:240 X @ index.js:64 ee @ index.js:122 (anonymous) @ index.js:237 (anonymous) @ index.js:13 (anonymous) @ index.js:186 (anonymous) @ index.js:146 value @ xhrModule.js:114 value @ EventRepository.js:78 value @ analytics.js:344 value @ analytics.js:960 value @ analytics.js:756 value @ analytics.js:661 value @ analytics.js:520 page @ useTelemetry-Ct6_U3iA.js:24025 (anonymous) @ router-B61V4x5n.js:2901 (anonymous) @ truncate-D8k4BuhS.js:2586 runWithContext @ vue.runtime.esm-bundler-DDuXT-9r.js:3129 runWithContext @ truncate-D8k4BuhS.js:2544 (anonymous) @ truncate-D8k4BuhS.js:2586 triggerAfterEach @ truncate-D8k4BuhS.js:2586 (anonymous) @ truncate-D8k4BuhS.js:2534 Promise.then pushWithRedirect @ truncate-D8k4BuhS.js:2527 push @ truncate-D8k4BuhS.js:2484 login @ SigninView-BAZTYgGU.js:308 await in login onEmailPasswordSubmitted @ SigninView-BAZTYgGU.js:269 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ AuthView-Dp2hRyHb.js:68 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42354 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onSubmit @ src-BcrqaOXg.js:42268 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 emit @ vue.runtime.esm-bundler-DDuXT-9r.js:4131 onEnter @ src-BcrqaOXg.js:41999 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7087 cache.<computed>.cache.<computed> @ vue.runtime.esm-bundler-DDuXT-9r.js:7105 (anonymous) @ vue.runtime.esm-bundler-DDuXT-9r.js:6312 callWithErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1751 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1758 callWithAsyncErrorHandling @ vue.runtime.esm-bundler-DDuXT-9r.js:1766 invoker @ vue.runtime.esm-bundler-DDuXT-9r.js:6299 test:1 Access to XMLHttpRequest at 'http://120.26.180.183:5678/rest/telemetry/proxy/v1/page' from origin 'http://120.26.180.183' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. xhrModule.js:101 POST http://120.26.180.183:5678/rest/telemetry/proxy/v1/page net::ERR_FAILED
最新发布
12-13
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值