Error missing content-type header status 415
//ajax提交
$.ajax({
url:'/pics',
type: 'POST',
data:'{"upload":true}',
dataType:'json',
success:function(data){
alert('success');
},
error:function(err){
alert(123);
}
})
调用路由下的js router.post('/pics',function(){
....
res.json({//json串});
})
执行后就一直提醒
unsupported content-Type status 415
你添加一下content-type?
这句话是提示你找不到content-type