0

每次用户单击“获取报价”按钮时,都会显示一个 GIF 动画并隐藏旧的显示。

我查询一个后端服务,它返回一些我刚刚转储到页面上的 HTML(鉴于我糟糕的前端技能,我利用 API 中的 SMARTY 来处理我的格式)。当发生错误时,返回 JSON 而不是 HTML(因此有点向后尝试捕获,在这种情况下,“成功”发生在“捕获”中,“失败”发生在“尝试”中)。

发生错误时,HandleMessages() 获取响应,并处理存储在那里的消息(这工作正常)。处理完错误后,GIF 应该会消失(因为它在 .collapse 中并且我将其隐藏了)。这不会发生,只有当我向页面发出警报()时才会发生这种情况。如果 alert() 被注释或丢失,这不起作用。

我敢肯定这是非常愚蠢或愚蠢的事情,但您的帮助总是很感激。

这是代码:

$('#findCarriers').click(function(){

    var data = new Object();

    $('#carrierLoad').collapse('show');
    $('#carriers').collapse('hide');

    data.general = {
        'code': $('#warehouse').val(),
        'shipper': $('#shipper_zip').val(),
        'consignee': $('#consignee_zip').val(),
        'shipment_type': $('#direction').val(),
        'total_weight': $('#total_weight').text(),
    };

    data.accessorials = [];

    $('#accessorials').find('input:checkbox:checked').each(function(acc_index){

        data.accessorials.push($(this).val());

    });

    data.units = [{
        'num_of': $('#total_pallets').val(),
        'type': 'pallet',
        'weight': 0
    }];

    data.products = [];

    $('#items tr').each(function(index){

        data.products.push({
            'pieces': 1,
            'weight': parseFloat($(this).find('.weight').val(), 10),
            'class': parseInt($(this).find('.class').val(), 10)
        }); 

    });

    $.post('index.php?p=api&r=html&c=ctsi&m=lcc', data, function(resp){
        try {

            resp = $.parseJSON(resp);
            handleMessages(resp);

            carriersClear('find carriers');
            alert('good'); // comment out or remove and the show and hide on the collapse never happens
            $('#carrierLoad').collapse('hide');
            $('#carriers').collapse('show');
        } catch(err) {

            $('#carriers').html(resp);
            alert('fail'); // comment out or remove and the show and hide on the collapse never happens
            $('#carrierLoad').collapse('hide');
            $('#carriers').collapse('show');

        }

    });

    return false;

});

辅助功能:

function setError(e_title, e_msg, e_type) {

    $.pnotify({
        title: e_title,
        text: e_msg,
        type: e_type
    });

}

function handleMessages(jsResponse) {

    $.each(jsResponse.message, function(){

        setError(this.traceroute[0] + '-' + this.traceroute[1] + '-' + this.traceroute[2], this['message'], this['type'])

    });

}

function carriersClear(reason) {

    $('#carriers').html('');

    //alert(reason);

}

这是HTML:

<div class="row">

<div class="span10">

    <h3 class="heading" data-toggle="collapse" data-target="#carrierSelect">Carriers</h3>

    <div class="bg-light collapse in bg-light" id="carrierSelect">

        <div class="row spacer-top spacer-bottom">

            <div class="span2 offset8">
                <a href="#" class="btn btn-primary" id="findCarriers">Get Quote</a>
            </div>

        </div>

        <div class="row spacer-bottom collapse" id="carrierLoad">
            <div class="span2 offset4"><img class="center-block" src="view/img/load.gif" /></div>
        </div>

        <div class="row">

            <div class="span10 bg-x-light collapse in spacer-top" id="carriers">

            </div>

        </div>

    </div>

</div>

4

1 回答 1

0

您需要将carrierClear() 之后的行作为回调传递给carrierClear 函数。像这样:

$.post('index.php?p=api&r=html&c=ctsi&m=lcc', data, function(resp){
    try {

        resp = $.parseJSON(resp);
        handleMessages(resp);

        carriersClear('find carriers', function(){
            $('#carrierLoad').collapse('hide');
            $('#carriers').collapse('show');
        }
    }

然后:

function carriersClear(reason,callback) {
    $('#carriers').html('');
    callback();
}
于 2013-03-26T18:01:04.697 回答