0
[解決]獲取自定義WCF對象使用JSON
我做了一個小測試項目,瘦了如何使用WCF對象和JSON工作。如果你有這樣的資源/教程,請告訴我。
我想通過它的id
得到一個自定義對象User
與一些jQuery腳本,這樣做時我的服務失敗,沒有消息。返回 「已知」 像int
或string
作品物體正常的,所以我想我的web.config
應該罰款
IService
[ServiceContract]
public interface IService
{
[OperationContract]
[WebInvoke(Method = "POST", BodyStyle = WebMessageBodyStyle.Wrapped, ResponseFormat = WebMessageFormat.Json)]
User GetUser(int id);
}
[DataContract]
public class User
{
[DataMember]
public int id { get; set; }
[DataMember]
public string name { get; set; }
}
Service.svc.cs
[AspNetCompatibilityRequirements(RequirementsMode
= AspNetCompatibilityRequirementsMode.Allowed)]
public class Service1 : IService
{
public User GetUser(int id)
{
return new User() { id=1, name="foo" };
}
}
的Json
var Type;
var Url;
var Data;
var ContentType;
var DataType;
var ProcessData;
$(document).ready(
function() {
$("#log").append("<p>Document ready</p>");
GetUser();
}
);
function GetUser() {
$("#log").append("<p>Called GetUser</p>");
var userid = "1";
Type = "POST";
Url = "http://localhost:4270/Service.svc/GetUser";
Data = '{"Id": "' + userid + '"}';
ContentType = "application/json; charset=utf-8";
DataType = "json";
varProcessData = true;
CallService();
}
function CallService() {
$("#log").append("<p>Called CallService</p>");
$.ajax({
type: Type,
url: Url,
data: Data,
contentType: ContentType,
dataType: DataType,
processdata: ProcessData,
success: function(msg) {
ServiceSucceeded(msg);
},
error: ServiceFailed
});
}
function ServiceSucceeded(result) {
$("#log").append("<p>ServiceSucceeded</p>");
if (DataType == "json") {
user = result.GetUserResult;
$("#result").append("<p> user = " +user+ "</p>");
$("#result").append("<p> id = " +user.id+ "</p>");
$("#result").append("<p> name = " +user.name+ "</p>");
}
}
這不是很清楚嗎?你可以遞歸地調用* GetUser *而不需要停止任何操作。 '返回GetUser(Convert.ToInt32(id));' –
是的..證明後讀取我立即看到它.. 我有另一個錯誤,將編輯我的問題。 – David
我注意到關於你的jQuery的另一個問題。你不是將ajax值傳遞給CallService,所以你的ajax調用不會工作。 TYPE,URL,DATA,CONTENTTYPE等都是該函數範圍內未定義的變量。你需要從你的getUser()方法中傳遞這些信息。 – heymega