我正在使用的这小段代码导致问题,因为请求字符串是以“delete.php& id = {id}& confirm = yes”而不是“delete.php?id =”来到apache的{ID}&安培;确认=是”
if(result) {
var posting = $.post( '/support_ticket/delete.php', {id: tickId, confirm: 'yes'});
posting.done(function( data ) {
var content = $( data ).find( '#main' );
bootbox.alert(content);
});
}
据我所知,我之前从未遇到过这个问题,也不明白为什么会这样做。