2012-03-27 81 views
0

工作,我有一個Web服務,其以JSON格式返回數據內容類型在jQuery的

[WebMethod] 
     public string GetCustomers() 
     { 
      using (var documentStore = new DocumentStore { Url = "http://haseeb-pc:8080/" }.Initialize()) 
      { 
       using (var session = documentStore.OpenSession()) 
       { 
        var query = session.Query<Customer>().Select(customer => customer).Take(20); 
        var serializer = new JavaScriptSerializer(); 
        return serializer.Serialize(query); 
       } 
      } 
     } 

在jQuery中,當我使用:

contentType: "application/json; charset=utf-8", 

我的螢火得到一個錯誤:

{"Message":"Invalid JSON primitive: take.","StackTrace":........................ 

當我刪除此:

contentType: "application/json; charset=utf-8", 

我的web服務給了我這樣的XML:

<string xmlns="http://tempuri.org/"> 
[{"FirstName":"Human1","LastName":"Being1","Email":"myemail1","ProductInfo":{"Name":"product1","Quantity":10}}] 
</string> 

但是我希望結果是JSON?

回答

0

當使用jQuery的$ .ajax方法進行AJAX請求時,您不應該需要提供dataType而不是contentType嗎?

的contentType用於特定格式的數據發送到服務器

數據類型用於接收來自服務器的數據,具體格式

像這樣

$.ajax({ 
    type: "GET", 
    url: "test.js", 
    dataType: "json" 
});