gpt4 book ai didi

c# - 错误 : the property name 'firstname' specified for the type microsoft. crm.sdk.data.services 无效

转载 作者:行者123 更新时间:2023-12-01 03:01:39 24 4
gpt4 key购买 nike

使用 CRM 2011 oData 服务创建联系人时出现此错误。

var newContact = Object();
newContact.firstname = Xrm.Page.getAttribute("ct_leadconversioncontactfirstname").getValue();
newContact.lastname = Xrm.Page.getAttribute("ct_leadconversioncontactlastname").getValue();
newContact.gendercode = Xrm.Page.getAttribute("ct_leadconversioncontactgender").getValue();
newContact.jobtitle = Xrm.Page.getAttribute("ct_leadconversioncontactjobtitle").getValue();
newContact.websiteurl = Xrm.Page.getAttribute("ct_leadconversioncontactwebsite").getValue();

var jsonContact = window.JSON.stringify(newContact);

$.ajax({
async: false,
type: "POST",
contentType: "application/json; charset=utf-8",
dataType: "json",
data: jsonContact,
url: methodUrl,
beforeSend: function (XMLHttpRequest) {
//ensures the results will be returned as JSON.
XMLHttpRequest.setRequestHeader("Accept", "application/json");
},
success: successCallback,
error: failedCallback
});

最佳答案

我从错误中猜测你的网址是错误的。

确保 methodUrl 参数类似于:

url: <your servuer url> /XRMServices/2011/OrganizationData.svc/ContactSet"

因为看起来请求是在说“我收到了您发送的内容,但您将其发布到的位置没有对象上的名字属性”

因此请检查其发布到 ContactSet

关于c# - 错误 : the property name 'firstname' specified for the type microsoft. crm.sdk.data.services 无效,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8510408/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com