我不知道为什么,但是我保留着这东西。
我正在尝试通过jQuery帖子在其中加载数据的文件
$.post("/index.php", {
request: url,
dynamic: true
},
function(output) {
console.log(output);
});
当我在索引中var_dump $ _POST时还可以,但是当我在index.php数组中添加require或include时为空,即使它在include之前也是var_dumped。
请帮助。谢谢。