ihtml5 / jscalpel-orm

It is convenient for you to extract the required fields from one object to generate another object.

Home Page:http://ihtml5.github.io/jscalpel-orm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jscalpel-orm

It is convenient for you to extract the required fields from one object to generate another object.

dependency

jscalpel

Installation

Install using npm

jscalpel-orm

npm install jscalpel-orm --save
yarn add jscalpel-orm --save

Useage

Es6

  import JscalpelORM from 'jscalpel-orm'

Include in html

  <script charset="utf-8" src="https://unpkg.com/jscalpel-orm@latest/dist/index.js"></script>

APIS

parameter type default value use isRequired required version
source  object empty object source object true no
rules object empty object map rules true no
_extraInfo object empty object extra info false no

Demos

es6

import jscalpelORM from 'jscalpelORM';
const source = {
  data: {
    articles: [{
      imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
      title: ‘jscalpelORM'
    }],
  },
  msg: 'ok',
  code: 0,
}
const rules = {
  imgUrl: 'data.articles.0.imgUrl',
  msg: 'msg',
  articles: 'data.articles',
  title: 'data.articles.0.imgUrl',
};
const _extraInfo = {
  name: 'jscalpelORM',
};
const newTarget = jscalpelORM(source, rules, _extraInfo);
// output
{
 imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
 title: ‘jscalpelORM',
 articles: [{
   imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
   title: ‘jscalpelORM'
 }],
 msg: 'msg',
 name: 'jscalpelORM',
}

es5

var source = {
  data: {
    articles: [{
      imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
      title: ‘jscalpelORM'
    }],
  },
  msg: 'ok',
  code: 0,
}
var rules = {
  imgUrl: 'data.articles.0.imgUrl',
  msg: 'msg',
  articles: 'data.articles',
  title: 'data.articles.0.imgUrl',
};
var _extraInfo = {
  name: 'jscalpelORM',
};
var newTarget = jscalpelORM(source, rules, _extraInfo);
// output
{
 imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
 title: ‘jscalpelORM',
 articles: [{
   imgUrl: 'https://avatars0.githubusercontent.com/u/6822604?s=460&v=4',
   title: ‘jscalpelORM'
 }],
 msg: 'msg',
 name: 'jscalpelORM',
}

About

It is convenient for you to extract the required fields from one object to generate another object.

http://ihtml5.github.io/jscalpel-orm

License:MIT License


Languages

Language:JavaScript 100.0%