我正在使用wcf网络服务从$ http请求获取UI应用程序中的数据,获取请求工作正常,而在做帖子时我遇到了一些挑战,比如 1)如果我在数据中传递我的对象,那么当它与身体一起传递时,它不会击中服务,但是我在服务方法(wcf服务)中将我的对象变为null。
$http(
{
url: 'http://localhost:56733/Service1.svc/SaveTutorialData',
method: "post",
body: tutorialData, //hitting the method with body, if data:{}used not hitting ?
headers: { 'Content-Type': 'application/json' }
})
.then(function (data, status, header, confi)
{
console.log(data);
}, function (error, data)
{
console.log(error);
});
2)当我在Chrome应用程序中从Postman检查这个东西时,我能够在从body和header类型传递数据作为application / json时命中服务,我能够在参数中看到传递值。 ?