jquery ajax post()


jquery ajax post()

 

应用:使用post发送异步请求,从后端获取数据

 

 

*********************

语法:post(url,[data],[callback])

 

url:请求获取数据地址

data:可选,传递给后端的数据

 

callback:可选,请求成功后调用,请求失败不会调用,函数参数:

response:请求结果

status:请求结果状态,如success

xmlhttpRequest:http请求对象

 

type:请求结果类型,包括:xml、html、text、script、json、jsonp

 

 

*********************

示例

 

HelloController

@RestController
public class HelloController {

    @RequestMapping("/hello")
    public String hello(){
        return "hello 瓜田李下";
    }

    @RequestMapping("/hello2")
    public String hello2(String name){
        return "hello "+name;
    }

    @RequestMapping("/hello3")
    public Map hello3(String name){
        Map map=new HashMap<>();
        map.put("info",name);

        return map;
    }
}

 

index.html




    
    Title
    





 

 

点击btn

                       

 

 

你可能感兴趣的:(jquery)