1. 程式人生 > >使用ajax提交資料到controller成功,但是總是會進入error方法

使用ajax提交資料到controller成功,但是總是會進入error方法

目前總結存在兩個原因:

 

1、此原因主要是因為沒有在controller中的返回方法前面加上@ResponseBody註解。加上即可

@Controller
@RequestMapping("/LoginController")
public class LoginController {
    
    @RequestMapping(value = "/login")
    @ResponseBody //需要向頁面返回資料時,要使用此註解
    public String login(
            @RequestParam String name,
            @RequestParam String password,HttpServletRequest request,HttpServletResponse response) {
        System.out.println("進來了");
        System.out.println("name:"+name+",password:"+password);
        String result="fail";
        if(name=="a" || name.equals("a") &&(password=="123456" || password.equals("123456"))) {
            result="success";
        }
        System.out.println("result="+result);
        
        return result;
    }

}

2、後臺傳給前臺的資料和前臺ajax提交成功過後接收的資料型別不一致,導致出現始終進入error這樣的問題。

       加入前臺ajax提交成功過後,需要處理的資料型別為json,那麼後臺傳給前臺的資料型別也應該是json型別資料。