[]MovieClip存在版本管理问题,望修复
MovieClip的_parse方法里的这一行代码有问题:spp.loadImage(basePath + pid + ".png");
在设置了URL.basePath,并且调用了ResourceVersion.enable的情况下,上面代码里的basePath是带http头的,导致最后没有经过ResourceVersion.addVersionPrefix方法去处理,最后加载的url是错的
改成这样就没问题了:spp.loadImage((basePath + pid + ".png").replace(URL.basePath,""));
在设置了URL.basePath,并且调用了ResourceVersion.enable的情况下,上面代码里的basePath是带http头的,导致最后没有经过ResourceVersion.addVersionPrefix方法去处理,最后加载的url是错的
改成这样就没问题了:spp.loadImage((basePath + pid + ".png").replace(URL.basePath,""));
没有找到相关结果
已邀请:
2 个回复
Aar0n
赞同来自:
Aar0n
赞同来自: