dojo.io.iframe.send在dojo 1.8中第二次不发送请求

前端之家收集整理的这篇文章主要介绍了dojo.io.iframe.send在dojo 1.8中第二次不发送请求前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_403_0@
@H_403_0@
示例代码

this._deferred = dojo.io.iframe.send({
        url: "/Some/Servie",method: "post",handleAs: 'html',content: {},load: function(response,ioArgs){
            //DO successfull callback
        },error: function(response,ioArgs){  
            // DO Failer callback
        }
    });

脚步

>单击“提交”按钮发送请求并成功获得响应
>再次点击提交按钮…请求永不发送…

感谢任何帮助

解决方法

我不能谈论1.8,但我使用的是dojo 1.6并且遇到了一个非常类似的问题,我用以下方法解决了这个问题:

dojo.io.iframe._currentDfd = null; //insert this line
dojo.io.iframe.send
({...

*已在Chrome版本25.0.1364.152 m中验证

资料来源:http://mail.dojotoolkit.org/pipermail/dojo-interest/2012-May/066109.html

@H_403_0@

猜你在找的Dojo相关文章