实践:图片编辑页面的趣图模板引入

来自CloudWiki
跳转至: 导航搜索

data

wx:key wx:for

点击图片出现对应的东西

scene.wxml:

 <view  bindtap(onTapScene()) data-index="模板:Index" >


scene.css:

onTapScene:function(event) {
    //console.log(event);
     console.log(event.currentTarget.dataset.index);
     console.log('hello');

}


这样点击之后会出现相应的index


改进一下: drawNewScene: function (index) {

...
ctx.draw();

} scene.css:

onTapScene:function(event) {
    this.drawNewScene(event.currentTarget.dataset.index);

}