我正在开发一个核心 php 项目,在该项目中我想使用 ajax 调用请求从 javascript 调用 php 函数。我试过这个,但它不起作用。
.js 文件:
$.ajax({
type: "POST",
data: data,
url:"/rootfolder/subfolder/action.php/test",
success:function(response)
{
if(response == 'true')
{
window.location.assign("home.html");
}
else
{
alert("wrong credencials");
}
},
failure:function(response)
{
alert("there is an error.");
}
});
.php 文件:
<?php
include("../connection.php");
function test()
{
//some stuff
}
?>
请提前提出一些解决方案或提供任何 refrence.thanx。