5

我需要返回一个 json 对象,但出现以下错误:

错误 1 ​​无法将类型“Newtonsoft.Json.Linq.JObject”隐式转换为“System.Collections.Generic.IEnumerable<Newtonsoft.Json.Linq.JObject>”。存在显式转换(您是否缺少演员表?)

谁能帮我解决这个错误?

public static IEnumerable<JObject> GetListOfHotels()
{
    const string dataPath = "https://api.eancdn.com/ean-services/rs/hotel/v3/list?minorRev=99&cid=55505&apiKey=key&customerUserAgent=Google&customerIpAddress=123.456&locale=en_US&currencyCode=USD&destinationString=washington,united+kingdom&supplierCacheTolerance=MED&arrivalDate=12/12/2013&departureDate=12/15/2013&room1=2&mberOfResults=1&supplierCacheTolerance=MED_ENHANCED";
    var request           = WebRequest.Create(dataPath);
    request.Method        = "POST";
    const string postData = dataPath;
    var byteArray         = Encoding.UTF8.GetBytes(postData);
    request.ContentType    = "application/json";
    request.ContentLength  = byteArray.Length;
    var dataStream = request.GetRequestStream();
    dataStream.Write(byteArray, 0, byteArray.Length);
    dataStream.Close();

    var response = request.GetResponse();
    var responseCode = (((HttpWebResponse) response).StatusDescription);

    var responseStream = response.GetResponseStream();

    var responseReader = new StreamReader(responseStream, Encoding.UTF8);
    var responseString = responseReader.ReadToEnd();

    var root = JObject.Parse(responseString);

    return root;
}
4

2 回答 2

5

问题是您试图返回 a JObject,但由于函数的当前签名,编译器假定它需要IEnumerable<JObject>返回 a 。

因此,您需要将函数的签名从期望更改为IEnumerable<JObject>

public static IEnumerable<JObject> GetListOfHotels()

JObject改为接受 a :

public static JObject GetListOfHotels()
于 2013-04-15T20:59:57.200 回答
0

当使用 Ext.Direct 客户端代理从 Sencha ExtJS 4 数据存储中调用 Ext.Direct for .NET 服务器端堆栈时,我遇到了同样的异常。此服务器端堆栈引用 Newtonsoft.Json.dll .NET 程序集 (.NET 4.0)。我的 Ext.Direct 商店在抛出此异常时正在传递商店中的 sorters 和 groupers 属性中的嵌套对象。我通过在花括号周围添加方括号来修复它。如果您想了解原因,可以在此处下载框架:https ://code.google.com/p/extdirect4dotnet/ 。

旧的(抛出异常):

Ext.define('MyApp.store.Hierarchy', {
    extend : 'Ext.data.Store',
    model : 'R.model.Hierarchy',
    sorters: { 
        property: 'namespace_id',
        direction: 'ASC' 
    },
    remoteSort: true,
    groupers: {
        property: 'namespace_id',
        direction: 'ASC'
    },
    remoteGroup: true,
    proxy: {        
        type: 'direct',
        directFn: Tree_CRUD.read,
        reader: {
            root: 'data'
        }
    }
});

新的(通过包括括号修复):

Ext.define('MyApp.store.Hierarchy', {
    extend : 'Ext.data.Store',
    model : 'R.model.Hierarchy',
    sorters: [{ 
        property: 'namespace_id',
        direction: 'ASC' 
    }],
    remoteSort: true,
    groupers: [{
        property: 'namespace_id',
        direction: 'ASC'
    }],
    remoteGroup: true,3
    proxy: {        
        type: 'direct',
        directFn: Tree_CRUD.read,
        reader: {
            root: 'data'
        }
    }
});
于 2013-08-04T06:49:05.687 回答