json2html

码农软件 · 软件分类 · JSON/BSON开发包 · 2019-03-31 22:13:23

软件介绍

json2html 是一个开源的 JavaScript 库,可使用 JSON 模板来讲 JSON 对象转成 HTML。提供了 jQuery 插件和 Node.js 包两种形式。

示例代码:

var transform = {'tag':'li','html':'${name} (${age})'};
    
var data = [
    {'name':'Bob','age':40},
    {'name':'Frank','age':15},
    {'name':'Bill','age':65},
    {'name':'Robert','age':24}
];
    
json2html.transform(data,transform);

本文地址:https://codercto.com/soft/d/2588.html

Web Design in a Nutshell

Web Design in a Nutshell

Jennifer Niederst / O'Reilly Media, Inc. / 2006-02-21 / USD 34.99

Are you still designing web sites like it's 1999? If so, you're in for a surprise. Since the last edition of this book appeared five years ago, there has been a major climate change with regard to web......一起来看看 《Web Design in a Nutshell》 这本书的介绍吧!

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

MD5 加密
MD5 加密

MD5 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具