我尝试使用节点中的网络应用程序发送一些参数,但显示此错误'
Response for preflight has invalid HTTP status code 405
405 (Method Not Allowed)
顺便说一句,如果使用应用程序进行make请求,我使用ARC,工作正常
我在我的节点项目中查看了cors,但是我没有告诉我关于cors的事情
$http.post('http://unicesarapp.azurewebsites.net/api/Materias1',
{"Id":1,"Nombre":"Prog. Haskell","Creditos":3,"IdGrupo":11,"Dia":"Miercoles","Hora":8,"Lugar":"Bloque B"}
).then(function(response){
console.log(response);
}).catch(function(error){
console.log(error);
});