我想在JSON请求标头中设置userId和Password,并在JSON请求体中设置其余参数。可以举一个例子,我如何在JSON请求体中的JSON请求头和其他参数中设置userId / password。
提前致谢。
答案 0 :(得分:0)
使用Jquery:
<script>
//submit request
$.post('url',{userId: userIdvalue, Password: password value,...},function(response){
// do something when request processed successfully
});
//if you submit a form
$.post('url',{$("#formId".serialize())},function(response){
// do something when request processed successfully
});
</script>