我有这个代码在我的bootstrap.php
Route::set('get_locations','ajax/locations.json')
->defaults(array(
'controller' => 'ajax',
'action' => 'locations',
));
这是我的代码Ajax.php
public function locations(){
echo json_encode(array("success" => true));
}
当我进行如下所示的 ajax 调用时,我似乎无法使其工作
$(document).ready(function(){
$.ajax({
url: "ajax/locations.json",
type: "GET",
dataType: "json",
success: function(result){
if(result["success"]=='true'){
alert('success');
}
}
});
});
请求总是返回404 Not Found
任何帮助都可以。
谢谢你。