gpt4 book ai didi

c# - 将 JSON 对象发布到 WCF 服务对象始终为 null

转载 作者:行者123 更新时间:2023-11-30 12:31:07 24 4
gpt4 key购买 nike

我在“发布”时遇到问题。我总是让用户对象为空。我已经无计可施了,已经研究了好几天了,所以如果有人有任何想法,请帮忙!提前致谢

我的 Jquery 看起来像这样

$(document).ready(function () {
$("#register").click(function (e) {
e.preventDefault(); //stop the submit event for the submit button
var Name = $("#register_username").val();
var Email = $("#register_email").val();
var Password = $("#register_password").val();
var Contact = $("#register_contactNumber").val();
var Adress = "Seteelte Town";
var chkUserType = document.getElementById("identity_type_2").checked;
var userinfo = { "request": { "Action": { "Address": Adress, "Children": [], "CityId": 0, "Email": Email, "HomeUser": chkUserType, "ImagePath": "", "IpAdress": "", "IsActive": false, "LastLogin": "", "Name": Name, "Password": Password, "PhoneNumber": Contact, "ProfileHit": 0, "ShowEmail": false, "ShowPhoneNumber": false, "SubscribeNews": false, "UserID": 0}} };

alert("Input: " + JSON.stringify(userinfo));
$.ajax({
type: "POST",
url: '/Services/Membership.svc/AccountAdd',
data: JSON.stringify(userinfo),
dataType: 'json',
contentType: "application/json; charset=utf-8",
success: function (data) {
alert(data.Result);
},
error: onError
});
});
});

我的 WCF C# 代码是

[AspNetCompatibilityRequirements(RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
public class Membership : IMembership
{

public SMProcessResponse<bool> AccountAdd(SMProcess<User> request)
{
return new SMProcessResponse<bool>(MembershipController.AccountAdd(request.Action));
}
}

处理请求的C#代码是

[DataContract(Namespace = "")]
public class SMProcess<T> : BaseRequest
{

public SMProcess(T obj)
{
// TODO: Complete member initialization
this.Action = obj;

}
[DataMember]
public T Action { get; set; }
}

这是我的 Web.config

<configuration>
<connectionStrings>
//here is connection string
</connectionStrings>
<system.web>
<compilation debug="true" targetFramework="4.0" />

<authentication mode="Forms">
<forms loginUrl="~/Account/Login.aspx" timeout="2880" />
</authentication>

<membership>
<providers>
<clear/>
<add name="AspNetSqlMembershipProvider" type="System.Web.Security.SqlMembershipProvider" connectionStringName="ApplicationServices"
enablePasswordRetrieval="false" enablePasswordReset="true" requiresQuestionAndAnswer="false" requiresUniqueEmail="false"
maxInvalidPasswordAttempts="5" minRequiredPasswordLength="6" minRequiredNonalphanumericCharacters="0" passwordAttemptWindow="10"
applicationName="/" />
</providers>
</membership>

<profile>
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/"/>
</providers>
</profile>

<roleManager enabled="false">
<providers>
<clear/>
<add name="AspNetSqlRoleProvider" type="System.Web.Security.SqlRoleProvider" connectionStringName="ApplicationServices" applicationName="/" />
<add name="AspNetWindowsTokenRoleProvider" type="System.Web.Security.WindowsTokenRoleProvider" applicationName="/" />
</providers>
</roleManager>

</system.web>
<system.serviceModel>
<services>
<service name="SelectionMall.Services.Membership">
<endpoint address="" behaviorConfiguration="Services.webHttpBehavior" binding="webHttpBinding" contract="SelectionMall.Services.IMembership" />
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
</service>
</services>
<behaviors>
<endpointBehaviors>
<behavior name="Services.webHttpBehavior">
<webHttp defaultOutgoingResponseFormat="Json" automaticFormatSelectionEnabled="true"/>
</behavior>
</endpointBehaviors>
<serviceBehaviors>
<behavior name="">
<serviceMetadata httpGetEnabled="true" />
<serviceDebug includeExceptionDetailInFaults="true" />
</behavior>
</serviceBehaviors>
</behaviors>
<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />
</system.serviceModel>
<system.webServer>
<modules runAllManagedModulesForAllRequests="true"/>
</system.webServer>
</configuration>

最佳答案

你的 JSON 请求应该是这样的

[OperationContract]
[WebInvoke(UriTemplate = "AccountAdd", Method = "POST")]
SMProcessResponse<bool> AccountAdd(SMProcess<User> request);

和你的 JSOn 数据

var userinfo = { "request": { "Action": { "Address": Adress, "Children": [], "CityId": 0, "Email": "waheed@gmail.com", "HomeUser": true, "ImagePath": "C:/Waheed.jpg", "IpAdress": "192.168.1.3", "IsActive": true, "LastLogin": "\/Date(1358852299323+0500)\/", "Name": "Waheed Iqbal", "Password": "111111", "PhoneNumber": "+923226270150", "ProfileHit": 10, "ShowEmail": true, "ShowPhoneNumber": true, "SubscribeNews": true, "UserID": 1}} }

编辑 Web.config 之后

<behavior name="Services.webHttpBehavior">
<webHttp defaultOutgoingResponseFormat="Json" automaticFormatSelectionEnabled="true" defaultBodyStyle="WrappedRequest" />
</behavior>

干杯

关于c# - 将 JSON 对象发布到 WCF 服务对象始终为 null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14454515/

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