Exemplo n.º 1
0
        /// <summary>
        /// Converts the specified model to json.
        /// </summary>
        /// <param name="model">The model.</param>
        /// <returns></returns>
        internal static string Convert(JsonModel model)
        {
            var converter = new LiteJsonWriter();

            using (var jsonWriter = new StringWriter())
            {
                converter._writer = new JsonTextWriter(jsonWriter)
                {
                    QuoteName = false,
                };
                if (RafyEnvironment.IsDebuggingEnabled)
                {
                    converter._writer.Formatting = Formatting.Indented;
                }

                //使用 JsonSerializer 会通过反射把对象的所有属性进行序列化,这时,不能对这个过程进行控制。
                //var serializer = new JsonSerializer();
                //serializer.Serialize(converter._writer, model);

                converter.WriteJsonModel(model);

                var json = jsonWriter.ToString();

                return(json);
            }
        }
Exemplo n.º 2
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty("name", name);
     if (!persist) json.WriteProperty("persist", persist);
     json.WritePropertyIf("defaultValue", defaultValue);
     json.WriteProperty("type", ServerTypeHelper.GetClientFieldTypeName(type));
 }
Exemplo n.º 3
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WritePropertyIf("text", text);

            this.SetProperty("command", command);

            base.ToJson(json);
        }
Exemplo n.º 4
0
        internal void ToJsonInternal(LiteJsonWriter json, JsonWriter writer)
        {
            writer.WriteStartObject();

            this.ToJson(json);

            writer.WriteEndObject();
        }
Exemplo n.º 5
0
        internal void ToJsonInternal(LiteJsonWriter json, JsonWriter writer)
        {
            writer.WriteStartObject();

            this.ToJson(json);

            writer.WriteEndObject();
        }
Exemplo n.º 6
0
        protected override void ToJson(LiteJsonWriter json)
        {
            //json.WriteProperty("autoDestroy", true);

            json.WritePropertyIf("fields", fields);
            json.WritePropertyIf("data", data);

            base.ToJson(json);
        }
Exemplo n.º 7
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WritePropertyIf("queryMode", queryMode);
            json.WritePropertyIf("displayField", displayField);
            json.WritePropertyIf("valueField", valueField);
            json.WritePropertyIf("store", store);

            base.ToJson(json);
        }
Exemplo n.º 8
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WriteProperty("type", "belongsTo");
            json.WritePropertyIf("foreignKey", foreignKey);
            json.WriteProperty("primaryKey", "Id");
            json.WritePropertyIf("associationKey", associationKey);

            base.ToJson(json);
        }
Exemplo n.º 9
0
        protected override void ToJson(LiteJsonWriter json)
        {
            int i = 0, c = this._properties.Count;

            foreach (var kv in this._properties)
            {
                json.WriteProperty(kv.Key, kv.Value);
                i++;
            }
        }
Exemplo n.º 10
0
        protected override void ToJson(LiteJsonWriter json)
        {
            int i = 0, c = this._properties.Count;

            foreach (var kv in this._properties)
            {
                json.WriteProperty(kv.Key, kv.Value);
                i++;
            }
        }
Exemplo n.º 11
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WritePropertyIf("name", name);
            json.WritePropertyIf("anchor", anchor);
            json.WritePropertyIf("fieldLabel", fieldLabel);
            json.WritePropertyIf("visibilityIndicator", visibilityIndicator);
            if (isReadonly) { json.WriteProperty("readOnly", isReadonly); }

            this.SetProperty("xtype", xtype);
            base.ToJson(json);
        }
Exemplo n.º 12
0
        protected override void ToJson(LiteJsonWriter json)
        {
            if (children.Count > 0) { json.WriteProperty("entities", children); }
            else { json.WriteProperty("leaf", true); }

            //if (expanded) json.WriteProperty("expanded", expanded);

            if (!this.HasDynamicProperty) { this.SetProperty("e", "1"); }

            base.ToJson(json);
        }
Exemplo n.º 13
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WriteProperty("type", "hasMany");
            json.WritePropertyIf("name", name);
            json.WriteProperty("primaryKey", "Id");
            json.WritePropertyIf("foreignKey", foreignKey);

            if (autoLoad) { json.WriteProperty("autoLoad", true); }

            base.ToJson(json);
        }
Exemplo n.º 14
0
        protected override void ToJson(LiteJsonWriter json)
        {
            //当使用自定义数据源时,强制其使用本地数据。
            if (!string.IsNullOrEmpty(this.dataSourceProperty))
            {
                this.queryMode = "local";
            }

            json.WritePropertyIf("model", model);
            json.WritePropertyIf("dataSourceProperty", dataSourceProperty);

            base.ToJson(json);
        }
Exemplo n.º 15
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WriteProperty("header", header);
            json.WritePropertyIf("xtype", xtype);
            json.WritePropertyIf("editor", editor);
            if (locked) { json.WritePropertyIf("locked", locked); }

            if (flex > 0)
            {
                json.WriteProperty("flex", flex);
            }
            json.WriteProperty("dataIndex", dataIndex);
        }
Exemplo n.º 16
0
        protected override void ToJson(LiteJsonWriter json)
        {
            if (isTree)
            {
                json.WritePropertyIf("isTree", isTree);
            }

            json.WriteProperty("fields", fields);

            if (associations.Count > 0)
            {
                json.WriteProperty("associations", associations);
            }
        }
Exemplo n.º 17
0
 /// <summary>
 /// Writes all properties by reflection.
 /// </summary>
 /// <param name="json">The json writer.</param>
 protected void WriteAllProperties(LiteJsonWriter json)
 {
     var properties = this.GetType().GetProperties();
     for (int i = 0, c = properties.Length; i < c; i++)
     {
         var property = properties[i];
         var value = property.GetValue(this, null);
         if (value is IEnumerable<JsonModel>)
         {
             json.WriteProperty(property.Name, value as IEnumerable<JsonModel>);
         }
         else
         {
             json.WriteProperty(property.Name, value);
         }
     }
 }
Exemplo n.º 18
0
        /// <summary>
        /// Writes all properties by reflection.
        /// </summary>
        /// <param name="json">The json writer.</param>
        protected void WriteAllProperties(LiteJsonWriter json)
        {
            var properties = this.GetType().GetProperties();

            for (int i = 0, c = properties.Length; i < c; i++)
            {
                var property = properties[i];
                var value    = property.GetValue(this, null);
                if (value is IEnumerable <JsonModel> )
                {
                    json.WriteProperty(property.Name, value as IEnumerable <JsonModel>);
                }
                else
                {
                    json.WriteProperty(property.Name, value);
                }
            }
        }
Exemplo n.º 19
0
 /// <summary>
 /// 子类重写此方法来实现 json 序列化的自定义。
 /// </summary>
 /// <param name="json"></param>
 protected abstract void ToJson(LiteJsonWriter json);
Exemplo n.º 20
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty("model", ClientEntities.GetClientName(model));
     json.WriteProperty("total", total);
     json.WriteProperty("entities", entities);
 }
Exemplo n.º 21
0
        protected override void ToJson(LiteJsonWriter json)
        {
            if (tbar.Count > 0) { json.WriteProperty("tbar", tbar); }

            json.WriteProperty("columns", columns);
        }
Exemplo n.º 22
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WritePropertyIf("model", model);
     json.WritePropertyIf("viewName", viewName);
     json.WritePropertyIf("label", label);
     json.WritePropertyIf("groupBy", groupBy);
     json.WritePropertyIf("gridConfig", gridConfig);
     json.WritePropertyIf("formConfig", formConfig);
     json.WritePropertyIf("storeConfig", storeConfig);
 }
Exemplo n.º 23
0
 protected override void ToJson(LiteJsonWriter json)
 {
 }
Exemplo n.º 24
0
 /// <summary>
 /// 返回当前对象对应的 json 字符串
 /// </summary>
 /// <returns></returns>
 public string ToJsonString()
 {
     return(LiteJsonWriter.Convert(this));
 }
Exemplo n.º 25
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WritePropertyIf("keyLabel", keyLabel);
     json.WritePropertyIf("url", url);
     json.WritePropertyIf("model", model);
     json.WritePropertyIf("viewName", viewName);
     json.WritePropertyIf("clientRuntime", clientRuntime);
     if (children.Count > 0) { json.WritePropertyIf("children", children); }
 }
Exemplo n.º 26
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty("model", model);
 }
Exemplo n.º 27
0
        /// <summary>
        /// Converts the specified model to json.
        /// </summary>
        /// <param name="model">The model.</param>
        /// <returns></returns>
        internal static string Convert(JsonModel model)
        {
            var converter = new LiteJsonWriter();

            using (var jsonWriter = new StringWriter())
            {
                converter._writer = new JsonTextWriter(jsonWriter)
                {
                    QuoteName = false,
                };
                if (RafyEnvironment.IsDebuggingEnabled)
                {
                    converter._writer.Formatting = Formatting.Indented;
                }

                //使用 JsonSerializer 会通过反射把对象的所有属性进行序列化,这时,不能对这个过程进行控制。
                //var serializer = new JsonSerializer();
                //serializer.Serialize(converter._writer, model);

                converter.WriteJsonModel(model);

                var json = jsonWriter.ToString();

                return json;
            }
        }
Exemplo n.º 28
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty("text", text);
     json.WriteProperty("value", value);
 }
Exemplo n.º 29
0
 /// <summary>
 /// 子类重写此方法来实现 json 序列化的自定义。
 /// </summary>
 /// <param name="json"></param>
 protected abstract void ToJson(LiteJsonWriter json);
Exemplo n.º 30
0
        protected override void ToJson(LiteJsonWriter json)
        {
            if (mainBlock == null) throw new ArgumentNullException("mainBlock");

            json.WritePropertyIf("layoutClass", layoutClass);
            json.WritePropertyIf("childProperty", childProperty);
            json.WriteProperty("mainBlock", mainBlock);
            json.WritePropertyIf("children", children);
            json.WritePropertyIf("surrounders", surrounders);
        }
Exemplo n.º 31
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WritePropertyIf("surrounderType", surrounderType);

            base.ToJson(json);
        }
Exemplo n.º 32
0
        protected override void ToJson(LiteJsonWriter json)
        {
            if (allowBlank) { json.WriteProperty("allowBlank", allowBlank); }

            base.ToJson(json);
        }
Exemplo n.º 33
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty("pageSize", pageSize);
 }
Exemplo n.º 34
0
 protected override void ToJson(LiteJsonWriter json)
 {
     json.WriteProperty(SuccessProperty, Success.Box());
     json.WritePropertyIf(MessageProperty, Message);
 }
Exemplo n.º 35
0
        protected override void ToJson(LiteJsonWriter json)
        {
            json.WriteProperty("text", ".");

            base.ToJson(json);
        }