- 具体错误
Uncaught TypeError: cyclic object valueonMouseOver Amap.vue:125renderMarker Amap.vue:84emit maps:1emit maps:1ci maps:1ui maps:1fireEvent maps:1jL maps:1Xt maps:1T maps:1<anonymous> amap.vue:49promise callback*nextTick runtime-core.esm-bundler.js:242<anonymous> amap.vue:48promise callback* amap.vue:47<anonymous> amap.vue:42register useRegister.ts:102useRegister useRegister.ts:64node_modules chunk-A2DP46KH.js:8733callWithErrorHandling runtime-core.esm-bundler.js:158callWithAsyncErrorHandling runtime-core.esm-bundler.js:166__weh runtime-core.esm-bundler.js:2655flushPostFlushCbs runtime-core.esm-bundler.js:325flushJobs runtime-core.esm-bundler.js:363promise callback*queueFlush runtime-core.esm-bundler.js:270queueJob runtime-core.esm-bundler.js:264reload runtime-core.esm-bundler.js:464tryWrap runtime-core.esm-bundler.js:494<anonymous> Amap.vue:304accept client.ts:564fetchUpdate client.ts:481queueUpdate client.ts:328queueUpdate client.ts:328handleMessage client.ts:181handleMessage client.ts:179setupWebSocket client.ts:96setupWebSocket client.ts:95<anonymous> client.ts:69
7 Amap.vue:125:35
- 解决办法
输出key和value,检查哪个是object类型,逐个排除。比如我经过输出,判断如下:
const onMouseOver = (event, marker) => {let jsonString = JSON.stringify(event, function(key, value) {//console.log(key+", "+value);if (key === 'target') {return undefined; // 忽略循环引用属性}return value;});console.log("event="+jsonString);jsonString = JSON.stringify(marker, function(key, value) {//console.log(key+", "+value);if (key === 'context'|| key === '_map'|| key == '_parent' ) {return undefined; // 忽略循环引用属性}return value;});