这是我的代码,可以直接粘贴到Framer Studio中:
layerA = new Layer()
# Listen to the loading event
layerA.on Events.ImageLoaded, ->
print "the image is loaded"
layerA.on Events.ImageLoadError,
-> print "the image could not be loaded"
layerA.image = "http://framerjs.com/static/images/home/app-icon.png"
然而,我发现永远不会打印the image is loaded
字符串..是否由缓存引起?有没有人有关于如何解决这个问题的想法?