1

我有一个 weservice 方法,

public string SearchProperties(string pPropertySearch, string pSort)
    {
        string[] _propSearch = pPropertySearch.Split(',');
        string searchType = (_propSearch)[_propSearch.Length - 1];
        List<Property> returnResults = new List<Property>();
        try
        {
            PropertySearch _MyPropertySearch = (PropertySearch)JavaScriptConvert.DeserializeObject(pPropertySearch, typeof(PropertySearch));
            returnResults = PropertyDALC.SearchPropertyNew(_MyPropertySearch, pSort, searchType, 25);
        }
        catch (Exception e)
        {

        }
        string output = JavaScriptConvert.SerializeObject(returnResults);

        return output;
    }

PropertySearch.cs,

[Serializable]
public class PropertySearch
{
private string userId;
private string sessionId;

private string priceMin;
private string priceMax;


public string UserId
{
    get { return userId; }
    set { userId = value; }
}
public string SessionId
{
    get { return sessionId; }
    set { sessionId = value; }
}

public string PriceMin
{
    get { return priceMin; }
    set { priceMin = value; }
}
public string PriceMax
{
    get { return priceMax; }
    set { priceMax = value; }
}
public string BedsMin
{
    get { return bedsMin; }
    set { bedsMin = value; }
}         
}

我将字符串“pPropertySearch”指定为:

 "0000-0000","gghuk","6666","8888"

单击 InVoke 按钮时,将调用 Web 服务并在此行附近

" PropertySearch _MyPropertySearch = (PropertySearch)JavaScriptConvert.DeserializeObject(pPropertySearch, typeof(PropertySearch));"

它给出了这个例外,

 "Cannot convert object of type 'System.String' to type 'PropertySearch'"

这段代码有什么问题。请纠正我。

我是否以错误的格式传递字符串?请帮忙。webservice中的这些序列化、反序列化概念我不知道。

任何帮助表示赞赏!

4

1 回答 1

2

看起来您正在尝试使用无效的 json 进行反序列化。检查 json 格式的好地方是JsonLint.com。你会希望你的 json 对象看起来更像这样:

{
    "UserId": 1,
    "SessionId": 1,
    "PriceMin": 1,
    "PriceMax": 1,
    "BedsMin": 1
}

您遇到的问题是您正在传递一个逗号分隔的字符串。反序列化器不知道将哪些值映射到哪些字段。

于 2013-06-12T06:21:33.603 回答