标题:简单问题请教
只看楼主
peng2000
Rank: 1
等 级:新手上路
帖 子:1
专家分:0
注 册:2017-10-12
 问题点数:0 回复次数:0 
简单问题请教
跟踪错误提示如下:   
 Unable to cast object of type 'System.String' to type 'System.Collections.Generic.Dictionary`2[System.String,System.Object]

程序代码如下:
  
程序代码:
 public string GetDetail()
        {
            string objectMame = "PO";
            string actionName = "GetDetail";
            Dictionary<string, string> dctparam = new Dictionary<string, string>();
            //GetDetail Data 请求参数 Post 需要获取单据的单据编号
            dctparam["Data"] = @"{""FBillNo"":""SMDCG170200391""}";
            byte[] postData = apiEnv.getPostData(dctparam);
            string z = GetToken();
            apiEnv.apiSession.Token = z;
            HttpResult result = apiEnv.DoAction(objectMame, actionName, postData);//主要是这句的postData的参数错误,可看附件图片的跟踪错误
            if (result.httpOk)
            {
                if (result.apiResult.StatusCode == 200)
                {
                    return result.apiResult.Data.ToString();
                }
                else
                {
                    return result.apiResult.Message;
                }
            }
            else
            {
                return "网络不通";
            }
        }
搜索更多相关主题的帖子: 简单问题 System String result return 
2017-10-12 09:17



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-481307-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.105443 second(s), 9 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved