1

Jquery 这里有一个类似的问题: Asynchronously load images with jQuery

接受的答案非常聪明并且效果很好(对于Jquery):

var img = $("<img />").attr('src', 'http://somedomain.com/image.jpg')
  .load(function() {
      if (!this.complete || typeof this.naturalWidth == "undefined" || this.naturalWidth == 0) {
          alert('broken image!');
      } else {
          $("#something").append(img);
      }
  });

我的问题是,在 Dojo 中与此等效的规范是什么(包括错误处理)?

4

1 回答 1

0

您可以使用“dojox.form.Uploader”来 ajax 上传图片。

道场代码:-

require(['dojox/form/Uploader'],function(Uploader)
{
    var uploader = new Uploader(
    {
       uploadOnSelect:true,   //Upload file on file select
       url:'UploadFile.php',  //Path of your server file
       label:'',              //Label of uploader
       multiple:true          //Select multiple file to upload
    },'uploader');
    uploader.startup();
});

HTML 代码:-

<div id="uploader"></div>

“dojox.form.Uploader”提供了各种有助于上传文件的属性、方法和事件。我希望这能帮到您。

于 2012-12-08T16:41:01.117 回答