欧美成人精品手机在线观看_69视频国产_动漫精品第一页_日韩中文字幕网 - 日本欧美一区二区

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

【ASP】讀取寫入 JSON for Classic ASP 類下載(aspjson1.19-master.zip)

admin
2024年12月12日 17:30 本文熱度 601

附件:aspjson1.19-master.zip

aspjson

Classic ASP JSON Class Reading/Writing

ASPJSON is a free to use project for generating and reading JSON data into a classic ASP object. The class can be used for reading a string of JSON data as well as writing JSON output from an AJAX file. Below are 2 simple examples of both.

Read Json Example:

Json內容:

{

  "firstName": "John",

  "lastName" : "Smith",

  "age"      : 25,

  "address"  :

  {

    "streetAddress": "21 2nd Street",

    "city"         : "New York",

    "state"        : "NY",

    "postalCode"   : "10021"

  },

  "phoneNumbers":

  [

    {

        "type"  : "home",

        "number": "212 555-1234"

      },

      {

        "type"  : "fax",

        "number": "646 555-4567"

    }

  ]

}

讀取Json代碼:

<%

Set oJSON = New aspJSON


'Load JSON string

oJSON.loadJSON(jsonstring)


'Get single value

Response.Write oJSON.data("firstName") & "<br>"

Response.Write oJSON.data("address").item("streetAddress") & "<br>"


'Loop through collection

For Each phonenr In oJSON.data("phoneNumbers")

    Set this = oJSON.data("phoneNumbers").item(phonenr)

    Response.Write _

    this.item("type") & ": " & _

    this.item("number") & "<br>"

Next


'Update/Add value

oJSON.data("firstName") = "James"


'Return json string

Response.Write oJSON.JSONoutput()

%>

Write Json Example:

Json內容:

{

  "familyName": "Smith",

  "familyMembers":

  [

    {

      "firstName": "John",

      "age": 41,

      "job": 

      {

        "function": "Webdeveloper",

        "salary": 70000

      }

    },

    {

      "firstName": "Suzan",

      "age": 38,

      "interests":

      [

        "Reading",

        "Tennis",

        "Painting"

      ]

    },

    {

      "firstName": "John Jr.",

      "age": 2.5

    }

  ]

}

寫入Json代碼:

<%

Set oJSON = New aspJSON

With oJSON.data

    .Add "familyName", "Smith"                      'Create value

    .Add "familyMembers", oJSON.Collection()

    With oJSON.data("familyMembers")

        .Add 0, oJSON.Collection()                  'Create unnamed object

        With .item(0)

            .Add "firstName", "John"

            .Add "age", 41

            .Add "job", oJSON.Collection()          'Create named object

            With .item("job")

                .Add "function", "Webdeveloper"

                .Add "salary", 70000

            End With

        End With

        .Add 1, oJSON.Collection()

        With .item(1)

            .Add "firstName", "Suzan"

            .Add "age", 38

            .Add "interests", oJSON.Collection()    'Create array

            With .item("interests")

                .Add 0, "Reading"

                .Add 1, "Tennis"

                .Add 2, "Painting"

            End With

        End With

        .Add 2, oJSON.Collection()

        With .item(2)

            .Add "firstName", "John Jr."

            .Add "age", 2.5

        End With

    End With

End With


Response.Write oJSON.JSONoutput()                   'Return json string


該文章在 2024/12/12 17:40:54 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved