qiu8310 / minapp

重新定义微信小程序的开发
https://qiu8310.github.io/minapp/
927 stars 68 forks source link

Animation 定义没有export方法......"调用实例的方法来描述动画。最后通过动画实例的`export`方法导出动画数据传递给组件的`animation`属性。" #82

Closed cfcodefans closed 6 years ago

qiu8310 commented 6 years ago

没太理解,可以再详细描述下么,最好放个 Example

cfcodefans commented 6 years ago

Animation 这个类,按微信的文档,要调用一个叫‘export’的方法输出到data里,这个类这里的定义,缺少这个export方法的定义

qiu8310 commented 6 years ago

我有意不写 export 的,原生微信中并没有 Animation 这个类,你需要使用 wx.createAnimation 来创建。

如果写了 export 在那,这样用户容易误解可以使用 new wx.Animation() 方法

cfcodefans commented 6 years ago

好吧, 我自己加了个接口, interface _Animation extends wx.Animation { export(): any }

qiu8310 commented 6 years ago

不好意思,我理解错了

现在了解了,我下个版本想办法处理下

qiu8310 commented 6 years ago

临时手动添加了一下,你可以安装最新版 @minapp/wx@2.1.2

有时间了我再想办法让程序自动生成

qiu8310 commented 6 years ago

已经可以自动生成了