开发者

On button click in Extjs 4.0.2

开发者 https://www.devze.com 2023-04-03 12:05 出处:网络
on button two Ajax request send to \".cfm\" page, for two times button click it\'s working fine but in third time when i 开发者_JS百科button press the Error \"an ajax response error has occured.

on button two Ajax request send to ".cfm" page, for two times button click it's working fine but in third time when i 开发者_JS百科button press the Error "an ajax response error has occured.

function ViewOpenPoll() {
    Ext.Ajax.request({
        url:QVisibleLink,
        // ON button click function viewpoll invoke
        // and the given url in ajax request has send.
        disableCaching: true,
        success: function(response) {
            obj = Ext.decode(response.responseText);
        }
    });
}


Access the .cfm page directly with your browser 3 times in a row. Does it work?

0

精彩评论

暂无评论...
验证码 换一张
取 消