SOE ESRI.ArcGIS.SOESupport + Newtonsoft.Json前后台本地交互读取JSON

QQ交流群:607330463 GIS开发技术最强交流群   未经允许 禁止转载  可以参考

(1)简介

using ESRI.ArcGIS.SOESupport;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json; 

(2)JSON经由ESRI.ArcGIS.SOESupport存储后台本地

         return Encoding.UTF8.GetBytes(CommonUtils.ResultJsonCustLG(dateStartTime, "result", qsrList, whereClause));
        /// <summary>
        /// 两规本地存储封装好的返回
        /// </summary>
        /// <param name="dS">开始的时间</param>
        /// <param name="name">返回的对象名字key</param>
        /// <param name="c">返回的对象数据value</param>
        /// <returns></returns>
        public static string ResultJsonCustLG(DateTime dS, string name, object c, string txtNam

猜你喜欢

转载自blog.csdn.net/qq_30430463/article/details/114405771