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

示例代码

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

相关文章

参考博客:https://blog.csdn.net/blog_szhao/article/details/50220181           https://doj...
我有一个包含多个字段的Dojo DataGrid.我目前正在设置查询一次搜索一个字段,如下所示: grid.setQuery(...
我正在使用JsonRestStore,但想为它添加一个自定义Accept标头.最好的方法是什么? 这与dijit.layout.Con...
我需要选择一个给定其URL的链接节点.使用属性选择器的效果非常好,除了少数几个url有tilda的情况.我无法...
我正在尝试使用Dojo JSONREST的增强网格,我遇到了一些问题. 我一直在寻找一些例子,但无法弄清楚如何做我...
如何根据一些运行时参数隐藏dgrid(gridFrom Html)中的完整列? 让我们说如果参数的值为true我应该能够显...