我正在尝试使用angularjs $ http.post调用在SharePoint网站内托管的WCF服务
wCFService的签名如下
[OperationContract]
[WebInvoke(UriTemplate = "CheckAnother", RequestFormat = WebMessageFormat.Json, ResponseFormat = WebMessageFormat.Json, Method = "POST")]
void PostAlertConfigss(string name);
相应的javascript调用是
return $http.post('/_vti_bin/NSPAlert/NSPAlert.svc/CheckAnother', { 'name': alertItemsCollection })
我收到以下错误,
"访问'来电者'在严格模式"
中不允许使用函数或参数对象的属性有谁知道如何解决这个问题?