每次用户点击“获取报价”按钮时,都会显示GIF动画并隐藏旧显示。
我查询后端服务,该服务返回一些我刚刚转储到页面上的HTML(我利用API中的SMARTY来处理格式,因为我的前端技巧很糟糕)。当发生错误而不是HTML时,返回JSON(因此有点向后尝试捕获,在这种情况下,“成功”发生在“catch”中,“失败”发生在“try”中。) p>
当发生错误时,HandleMessages()获取响应,并处理存储在那里的消息(这很好)。 在处理错误之后,GIF应该消失(因为它在.collapse中,我正在隐藏它)。这不会发生,只有当我向页面发出警报()时才会发生这种情况。如果警告()被注释或丢失,则不起作用。
我确信这是超级愚蠢或愚蠢的事情,但你的帮助总是让人欣赏。
以下是代码:
$('#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>
答案 0 :(得分:0)
您需要将运营商清单()之后的行传递给运营商清除功能作为回调。像这样:
$.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();
}