Git Product home page Git Product logo

json's Introduction

JSON fake data api

https://dummyjson.com/

https://jsonplaceholderapi

https://jsonplaceholder.typicode.com/

JSON file does not purse if it has comments inside

JSON file does not purse twice.

json Object serialise and deseriliase in c#

https://stackoverflow.com/questions/1056121/how-to-create-json-string-in-c-sharp

uses example

BulkRequisitionBillApproval billmaster = new SDBulkRequisitionBillBLL().GetBulkBill_Masterdetails(new ParamsModel() {ActionControlMode= "get_by_bill_id",Param1=model.Param1,Param2="x",Param3="x" });
            List<DOBreakDown> billdetails = billmaster.dobreakdowndetailslist;

serialise

 fields.Add(new BulkDORequisitionFieldJson("bulkdorequisionId", "DO Requisition", JsonConvert.SerializeObject(billmaster), "f fill-remaining-space", new Validation("false"), "", "false"));
 

deserialise and parse in js/angular

let data=JSON.parse(this.requisitionstring);

Another example

//Create my object
       var my_jsondata = new
       {
           Host = @"sftp.myhost.gr",
           UserName = "my_username",
           Password = "my_password",
           SourceDir = "/export/zip/mypath/",
           FileName = "my_file.zip"
       };

       //Tranform it to Json object
       string json_data = JsonConvert.SerializeObject(my_jsondata);

       //Print the Json object
       Console.WriteLine(json_data);

       //Parse the json object
       JObject json_object = JObject.Parse(json_data);

       //Print the parsed Json object
       Console.WriteLine((string)json_object["Host"]);
       Console.WriteLine((string)json_object["UserName"]);
       Console.WriteLine((string)json_object["Password"]);
       Console.WriteLine((string)json_object["SourceDir"]);
       Console.WriteLine((string)json_object["FileName"]);
    ```   

json's People

Contributors

atiq-shumon avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.