小程序
小游戏
企业微信
微信支付
扫描小程序码分享
定义了 const textCtx = canvas.getContext('2d') 之前能正常的生成图片,
现在报这样的错误:
VM2253:2 MiniProgramError
Cannot read property 'getContext' of null
TypeError: Cannot read property 'getContext' of null
求大佬指点
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
const query = wx.createSelectorQuery()
query.select('#textCanvas')
.fields({ node: true, size: true })
.exec((res) => {
const canvas = res[0].node
const textCtx = canvas.getContext('2d')
canvas.width = 500
canvas.height = 500
textCtx.font = item.textSize +"px" + " " + item.fontFamily
textCtx.fillStyle = item.textColor
textCtx.fillText(item.textValue,0,item.textSize)
})
项目中的代码,项目的代码太多,只是提取了其中使用的报错了的这段代码,利用canvas 2d生成艺术体的中文字。
运行到 这里会报错,错误代码如下
VM3432:2 MiniProgramError
Cannot read property 'node' of null
TypeError: Cannot read property 'node' of null
此代码之前能正常运行,能正常的渲染艺术字体,能生成图片,这两天就报错了,关键代码都没动过,很奇怪。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
请具体描述问题出现的流程,并提供能复现问题的简单代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html)。
const query = wx.createSelectorQuery()
query.select('#textCanvas')
.fields({ node: true, size: true })
.exec((res) => {
const canvas = res[0].node
const textCtx = canvas.getContext('2d')
canvas.width = 500
canvas.height = 500
textCtx.font = item.textSize +"px" + " " + item.fontFamily
textCtx.fillStyle = item.textColor
textCtx.fillText(item.textValue,0,item.textSize)
})
项目中的代码,项目的代码太多,只是提取了其中使用的报错了的这段代码,利用canvas 2d生成艺术体的中文字。
运行到 这里会报错,错误代码如下
VM3432:2 MiniProgramError
Cannot read property 'node' of null
TypeError: Cannot read property 'node' of null
此代码之前能正常运行,能正常的渲染艺术字体,能生成图片,这两天就报错了,关键代码都没动过,很奇怪。