我正在从数据库中更新一个cakephp应用程序,突然开始出现500错误。我浏览了文件,发现它们来自ajax代码:
$(window).on("load",function(){
//Get filter by date box when page loads
$.ajax({
type:'POST',
url: "../maps/display_time_filter_box",
success: function(data){
$("#time-filter-box .dropdown-menu").html(data);
$("#mobile-time-filter-box nav").html(data);
$(".time-slider").slider({});
},
error:function(xhr){
alert("Erreur: Impossible d'afficher d'afficher le filtre");
},
cache: true
});
您是否知道错误的根源是什么?
答案 0 :(得分:0)
我建议使用URL构建发送请求
url : "<?php echo $this->Url->build( [ 'controller' => 'Maps', 'action' => 'display_time_filter_box' ] ); ?>",