我在9090/login/login页面中使用ajax异步,
希望在返回的function中跳转到主页面9090/index
我写的是
$("#loginBut").click(function(){
$.ajax({
url:[[@{login}]],
data:$("#loginForm").serialize(),
type:"post",
dataType:"json",
success:function(obj){
if(obj.state==0){
location="[[@{/index}]]";
}
$("#message").html(obj.message);
}
});
});
但他实际路径是http://127.0.0.1:9090/Login/'/index'
而我期望的是http://127.0.0.1:9090/index
请问这种跳转怎么写