|
大佬们好,事情是这样的,正常访问的网站,写了一个按钮:
$(document).ready(function () {
$("#trans").click(function () {
$.ajax({
type: "POST",
url: "trans",
dataType: "json",
success: function (data) {
if (data.ret) {
$("#result").modal();
$("#msg").html(data.msg);
window.setTimeout("location.href='/user'", {$config['jump_delay']});
} else {
$("#result").modal();
$("#msg").html(data.msg);
}
},
error: function (jqXHR) {
$("#result").modal();
$("#msg").html("发生错误:" + jqXHR.status);
}
})
})
})
然后在routes.php里面添加了一条:
$app->group('/user', function () {
.
.
$this->post('/trans', 'App\Controllers\UserController:doTrans');
.
.
}
之后网站就无法访问了,删除红色代码后也无法访问,尝试重启了php环境也不行,虚心请教一下是哪里出了问题?
|
|