post方式访问webapi(参数巨大)
- 具体postman设置见图,其他tabs默认就好。选raw后贴入键值对
diagnosisTable=[...]
选post点send即可。
怎么格式化返回的json? 选json
即可
不用postman自己用jQuery实现一个post请求工具
- 让chrome支持跨域访问:
chrome图标上右键属性的目标改成
"C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe" --disable-web-security --user-data-dir=D:\\work\\chromeTemp\\
- 然后在跨域chrome中访问如下页面,注意api改成自己的,内容格式
a=123&b=123
<head>
<meta charset="utf-8">
<script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$(\'#div1\').html(\'发送成功!\');
var a=$(\'#a\').val();
var b=$(\'#b\').val();
$.post(
a,
b ,
function(rlt,status,xhr){
$(\'#div1\').html(rlt);
})
});
});
</script>
api:<input type=\'text\' style=\'width:1010px\' id=\'a\' value=\'http://localhost:5383/webapi/SysMgr/GetSrvDateTime\'/><br> <br>
post内容:<br>
<textarea rows="20" cols="150" id=\'b\'></textarea><br> <br>
<div id=\'div1\'>执行结果</div>
</head>
<body>
<button>发送POST请求</button>