All Projects → dblate → Jquery.json Editor

dblate / Jquery.json Editor

A json editor based on jquery.json-viewer.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Jquery.json Editor

Ps Webapi
(Migrated from CodePlex) Let PowerShell Script serve or command-line process as WebAPI. PSWebApi is a simple library for building ASP.NET Web APIs (RESTful Services) by PowerShell Scripts or batch/executable files out of the box.
Stars: ✭ 24 (+84.62%)
Mutual labels:  json
Realm.json.extensions
Extension Methods for adding JSON APIs to a Realm Instance
Stars: ✭ 9 (-30.77%)
Mutual labels:  json
Kakajson
Fast conversion between JSON and model in Swift.
Stars: ✭ 867 (+6569.23%)
Mutual labels:  json
Swinjectpropertyloader
Swinject extension to load property values from resources
Stars: ✭ 24 (+84.62%)
Mutual labels:  json
Partial.lenses
Partial lenses is a comprehensive, high-performance optics library for JavaScript
Stars: ✭ 846 (+6407.69%)
Mutual labels:  json
Reon
🌀 JSON for React.
Stars: ✭ 10 (-23.08%)
Mutual labels:  json
Forma
Typespec based parsing of JSON-like data for Elixir
Stars: ✭ 23 (+76.92%)
Mutual labels:  json
Jogo
JSON o Golang | Forget static types, No more complex structure definitions, Focus on code. Go Reflect!
Stars: ✭ 13 (+0%)
Mutual labels:  json
Cicada
🚀 Fast lightweight HTTP service framework.
Stars: ✭ 851 (+6446.15%)
Mutual labels:  json
Javascript ninja
javascript-ninja 😆
Stars: ✭ 11 (-15.38%)
Mutual labels:  json
Jose
JSON Object Signing and Encryption for Node.js and the browser
Stars: ✭ 25 (+92.31%)
Mutual labels:  json
Android
OwnTracks Android App
Stars: ✭ 840 (+6361.54%)
Mutual labels:  json
Instanote
Note keeping done in PHP 5.2 and JSON
Stars: ✭ 11 (-15.38%)
Mutual labels:  json
Cti Stix Validator
OASIS TC Open Repository: Validator for STIX 2.0 JSON normative requirements and best practices
Stars: ✭ 24 (+84.62%)
Mutual labels:  json
Lib
single header libraries for C/C++
Stars: ✭ 866 (+6561.54%)
Mutual labels:  json
Kalulu
Uganda Elections Tools and Resources
Stars: ✭ 24 (+84.62%)
Mutual labels:  json
Proxy Storage
Provides an adapter for storage mechanisms (cookies, localStorage, sessionStorage, memoryStorage) and implements the Web Storage interface
Stars: ✭ 10 (-23.08%)
Mutual labels:  json
Geochile
Esta es una api de Geocodificación, para que, con las coordenadas Latitud y Longitud se entregue una lista de ciudades cercanas.
Stars: ✭ 13 (+0%)
Mutual labels:  json
Html Pdf Service
LGPL V3. Java Spring Boot microservice with RESTful webconsole and service endpoints that convert HTML to PDF, optionally styling with CSS and templating with JSON using Flying Saucer, PDF Box and Jackson libraries. Available on Docker Hub.
Stars: ✭ 12 (-7.69%)
Mutual labels:  json
Swiftyjsonaccelerator
macOS app to generate Swift 5 code for models from JSON (with Codeable)
Stars: ✭ 864 (+6546.15%)
Mutual labels:  json

jquery.json-editor

A json editor based on jquery.json-viewer.

Check out the demo page!

特性:

  • 语法高亮
  • 支持数据块展开与收起
  • 简单
  • 可编辑

使用

<script src="path/to/jquery.js" type="text/javascript"></script>
<script src="path/to/jquery.json-editor.js" type="text/javascript"></script>
/**
 * 初始化一个 JsonEditor
 *
 * @param {DOM|string} container DOM 元素或 jQuery 选择器字符串
 * @param {Object} json JSON 对象
 * @param {Object=} options 其他配置项,可选
 * @param {boolean} options.defaultCollapsed 是否默认是收起状态,默认 false
 * @param {boolean} options.editable 是否可编辑,默认 true
 */
var editor = new JsonEditor(container, json, options);

// 更新 json
editor.load(json);

// 获取 json
try {
    editor.get();
} catch (ex) {
    // Trigger an Error when JSON invalid
    alert(ex);
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].