1. 程式人生 > >pringboot在js中直接跳轉後臺再到頁面

pringboot在js中直接跳轉後臺再到頁面

js程式碼:

function(data)
            {
console.info(data.result);
if(data.result==true)
{
url = "/order/main.do"
window.location.href = encodeURI(url);
}
if(data.result==false)
{
ajaxLoadEnd();
$.messager.alert('提醒',"<font size='4px'>登入失敗</font>",'warning');
}

            }

後臺程式碼:

@Controller
@RequestMapping("/order")
public class OrderTrackController {

@RequestMapping("/main.do")
public String goMain() {
System.out.println("jinlail ");
return "main";

}

目錄結構如下圖: