我对 mootools 库中的 Asset 对象有一个理解问题。我使用下面的代码来初始化一个Asset对象。
this.preloader = new Asset.image(src, {
'onerror': function(){
// do something
},
'onload': function(){
this.store('loaded', true);
}
});
如果我使用图像 url 作为不带参数的src
参数(磁盘上的普通图像文件),如下所示:
http://test.local/images/picture1.jpg
有用。
如果我使用图像 url 作为src
php 脚本的参数,该脚本使用函数imagejpeg()生成图像:
http://test.local/index.php/de/galerie/directory1/index.php?view=image&format=raw&type=img&id=2774
稍后它向我显示了一个断开的链接。
问题:为什么资产反应不同?有没有我错过的选项?
非常感谢您的帮助!尖刺