在我的Slim PHP应用程序中尝试使用AJAX获取数据时,我在控制台中获得了404(未找到)。这是错误消息:
http://localhost:8888/Project/mods/public/edit-mod/ajax/get-categories?gameID=1 404 (Not Found)
这是在routes.php文件中定义的路由(正确包含,所有其他路由都在工作):
$app->get("/ajax/get-categories/", function() use ($app, $User, $Game, $Mod){
//Fetch data and echo it
});
最后,这是我在JS脚本中调用AJAX页面的方式:
$.get("ajax/get-categories", {gameID: gameID}, function(data){
//Do something with data
});
我尝试将Slim路由更改为“ajax / get-categories /”(没有前导/
),但它没有改变任何内容,我也为AJAX调用尝试了一堆不同的路径(在JS脚本中)但没有任何效果,无论如何我总是得到404。
当我在我的脚本中只调用ajax/get-categories
时,它似乎将当前页面(ex edit-mod/
)附加到路径上,这可能是我的问题。
有没有办法匹配以ajax/get-categories
结尾的每条路线,以便upload/ajax/get-categories
和edit-mod/ajax/get-categories
都有效?
如果您需要更多代码,请告诉我,我想我已经包含了与问题相关的所有内容。
答案 0 :(得分:0)
我还没有使用Slim框架。但我查阅了文档,我认为不应该如何将参数传递给GET请求。
在您的路线中,将您的代码更改为以下内容:
$app->get("/ajax/get-categories/:gameID", function($gameID) use ($app, $User, $Game, $Mod){
// You can use the query string $gameID here...
var_dump($gameID);
// Do other stuff here...
});
在您的JavaScript文件中:
// I assume in there is a gameID variable in your JavaScript.
$.get("ajax/get-categories/" + gameID, function(data) {
//Do something with data
});
告诉我它是否有效。
请参阅文档here。
答案 1 :(得分:0)
$app->get("/:segment/ajax/get-categories", function($segment) use ($app, $User, $Game, $Mod){
//Fetch data and echo it
});
答案 2 :(得分:0)
我使用过Slim Framework;)
看,这就是我设法让Ajax与Slim框架一起工作的方式。
首先,您必须声明路线 获取和发布(当我第一次尝试声明发布时只是,它没有工作):
GET:
namespace
POST:
$app->get('/your/url',$permission(),function() use ($app){
//here you can check whether it is an ajax call
})->name('your.url');
现在,从视角来看,像这样制作你的ajax:
$app->post('/your/url',$permission(),function() use ($app){
//get the data:
$request = $app->request;/*getting post data*/
$var1 = $request->post('var1');
$var2 = $request->post('var2');
//echo '| For log and testing purposes you can echo out the gotten values. Var1: '.$var1.'. Var2: '.$var2;
//DO YOUR STUFF here, for example, database processing with Eloquent ORM
$saved=$user->save();
if($saved){ echo '[success]';}else{echo '[error]';}/*http://stackoverflow.com/a/27878102/1883256*/
})->name('your.url.post');
那就是它。