收藏
回答

绘图方法不能找到fillstyle?

const query = wx.createSelectorQuery()

query.select('#myCanvas')

.fields({ node: true, size: true })

.exec((res) => {

const canvas = res[0].node

const ctx = canvas.getContext('2d')


const dpr = wx.getSystemInfoSync().pixelRatio

canvas.width = res[0].width * dpr

canvas.height = res[0].height * dpr

// context.scale(dpr, dpr)


// context.fillRect(0, 0, 100, 100)

ctx.arc(100, 75, 50, 0, 2 * Math.PI)

ctx.fillStyle("#EEEEEE")

这个代码 fillStyle 直接报错了。 提示未找到函数

回答关注问题邀请回答
收藏

1 个回答

  • 林子
    林子
    2020-04-26

    fillStyle 是属性把,不是方法

    ctx.fillStyle = "#EEEEEE" 你试一下

    2020-04-26
    有用 1
    回复 1
    • 常建军
      常建军
      2020-04-26
      已经搞定 多谢
      2020-04-26
      回复
登录 后发表内容
问题标签