文档云图加上了图片遮挡之后,有个提醒如何解决

来源:14-19 文档云图-基于图形轮廓的绘制

Krane

2023-02-27

图片描述
有没有什么办法可以去掉提醒

写回答

3回答

learn21cn

2024-04-19

AI提供的代码:

const getWordCloudData = async () => {
  const res = await getChartWordCloud()
  wordCloudData.value = res
  
  // 临时覆盖 getContext 方法以设置 willReadFrequently
  // 请在使用此方法时谨慎,确保它不会干扰到你的应用中的其他部分
  const originalGetContext = HTMLCanvasElement.prototype.getContext
  HTMLCanvasElement.prototype.getContext = function (type, attributes) {
    if (type === '2d') {
      attributes = { ...attributes, willReadFrequently: true }
    }
    return originalGetContext.call(this, type, attributes)
  }

  // 渲染图表
  renderChart()

  // 在初始化后恢复 getContext 方法,以避免对页面上的其他 canvas 元素产生影响
  // 使用 setTimeout 确保 ECharts 渲染已经完成
  setTimeout(() => {
    HTMLCanvasElement.prototype.getContext = originalGetContext
  }, 1000) // 延时 1000 毫秒后恢复,根据实际情况调整
}
getWordCloudData()

......

//语言改变时
watchSwitchLang(getWordCloudData)
0
0

weixin_慕用2544807

2023-04-26

请问这个问题解决了么?

0
0

Sunday

2023-02-27

你好

这个应该是该库内部的处理导致的。具体可以看下这个文档:https://html.spec.whatwg.org/multipage/canvas.html#concept-canvas-will-read-frequently 

0
0

基于Vue3新标准,打造后台综合解决方案

基于Vue3重写Vue-element-admin,打造后台前端综合解决方案

1941 学习 · 1687 问题

查看课程