代码搜索:json
找到约 1,780 项符合「json」的源代码
代码结果 1,780
www.eeworm.com/read/463445/7180775
pas json.pas
unit json;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
interface
uses
Classes;
{$DEFINE JSON_LARGE_INT}
{$DEFINE JSON_EXTENDED_SYNTAX}
type
{$IFNDEF FPC}
PtrInt = longint;
www.eeworm.com/read/448362/7534263
js json.js
/*
json.js
2007-08-05
Public Domain
This file adds these methods to JavaScript:
array.toJSONString()
boolean.toJSONString()
date.toJSONString()
numbe
www.eeworm.com/read/398968/7904785
doc json.doc
www.eeworm.com/read/325395/13208957
cs json.cs
using System;
using System.Collections;
using System.Text;
namespace X2Design.Ajax
{
public class Json
{
public string singleInfo = string.Empty;
protected string _error = string.Empty
www.eeworm.com/read/317315/13506004
js json.js
Object.prototype.deep_clone = function(){
eval("var tmp = " + this.toJSON());
return tmp;
}
Object.prototype.toJSON = function(){
var json = [];
for(var i in this){
if(!this.hasOwnPropert
www.eeworm.com/read/493727/6389527
js json.js
/*
json.js
2007-07-03
Public Domain
This file adds these methods to JavaScript:
array.toJSONString()
boolean.toJSONString()
date.toJSONString()
www.eeworm.com/read/485228/6568306
json albums.json
{
'album':
[
{
'id':'1',
'artist':'Depeche Mode',
'title':'Playing the Angel',
'comment':'They are back and finally up to speed again'
},
{
'id'
www.eeworm.com/read/218276/14927936
js json.js
/*
json.js
2006-04-28
This file adds these methods to JavaScript:
object.toJSONString()
This method produces a JSON text from an object. The
obj