小程序
小游戏
企业微信
微信支付
扫描小程序码分享
我写了一个canvas,插入一张图片,和一段文字,文字可以跟输入表单的内容变化的,但是当输入内容时,上面的字有变化,可是图片变刷新没有了,怎么办?
写上字后
为什么图片会不见了呢?
6 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
额,我主要是要mpmb的实现……
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
可以将代码拷贝上来么?不要截代码的图。
你好,请提供一下能复现问题的简单代码示例。
//输入框输入显示
searchInputEvent: function (e) {
console.log(e.currentTarget.id)
if (e.currentTarget.id == "name") {
this.setData({ name: e.detail.value })
} else if (e.currentTarget.id == "company") {
this.setData({ company: e.detail.value })
} else if (e.currentTarget.id == "carrer") {
this.setData({ carrer: e.detail.value })
} else if (e.currentTarget.id == "address") {
this.setData({ address: e.detail.value })
} else if (e.currentTarget.id == "tel") {
this.setData({ tel: e.detail.value })
} else if (e.currentTarget.id == "call") {
this.setData({ call: e.detail.value })
} else if (e.currentTarget.id == "email") {
this.setData({ email: e.detail.value })
} else if (e.currentTarget.id == "internet") {
this.setData({ internet: e.detail.value })
}
// console.log(1);
this.mpmb();
},
我这么写好像是错的,因为每次写字都会重新渲染一次页面。。。
这个mpmb,调用的跟上面绘图的代码一样内容
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
额,我主要是要mpmb的实现……
可以将代码拷贝上来么?不要截代码的图。
你好,请提供一下能复现问题的简单代码示例。
//输入框输入显示
searchInputEvent: function (e) {
console.log(e.currentTarget.id)
if (e.currentTarget.id == "name") {
this.setData({ name: e.detail.value })
} else if (e.currentTarget.id == "company") {
this.setData({ company: e.detail.value })
} else if (e.currentTarget.id == "carrer") {
this.setData({ carrer: e.detail.value })
} else if (e.currentTarget.id == "address") {
this.setData({ address: e.detail.value })
} else if (e.currentTarget.id == "tel") {
this.setData({ tel: e.detail.value })
} else if (e.currentTarget.id == "call") {
this.setData({ call: e.detail.value })
} else if (e.currentTarget.id == "email") {
this.setData({ email: e.detail.value })
} else if (e.currentTarget.id == "internet") {
this.setData({ internet: e.detail.value })
}
// console.log(1);
this.mpmb();
},
我这么写好像是错的,因为每次写字都会重新渲染一次页面。。。
这个mpmb,调用的跟上面绘图的代码一样内容