Http请求携带JSON字符串,报错415 //使用ajax向后端发送post请求,响应415 let jsonObj={"username":"zhangsan","password":"1234"} Vue.createApp({ data(){return{ message:''} }, methods : {//异步方法(ajax 请求多数情况下都是异步请求)async getMessage(){ let response=await axios.post([[@{/}]]...
我所对接的接口所传的参数是json格式的,代码中没有设置请求头header的Content-Type,默认是application/x-www-form-urlencoded。 代码语言:javascript 复制 URIBuilder uriBuilder=newURIBuilder(url);//创建一个http post请求HttpPost httpPost=newHttpPost(uriBuilder.build());//设置请求头headerhttpPost.setHeader(...