normalizr API

API

  • normalize
  • denormalize
  • schema
    • Array
    • Entity
    • Object
    • Union
    • Values

normalize(data, schema)

Normalizes input data per the schema definition provided. 

根据提供的schema定义规范化输入数据。

  • data: required Input JSON (or plain JS object) data that needs normalization.
  • schema: required A schema definition

Usage

import { normalize, schema } from 'normalizr';const myData = { users: [ { id: 1 }, { id: 2 } ] };
const user = new schema.Entity('users');
const mySchema = { users: [ user ] }
const normalizedData = normalize(myData, mySchema);复制代码

Output

{result: { users: [ 1, 2 ] },entities: {users: {'1': { id: 1 },'2': { id: 2 }}}
}复制代码

denormalize(input, schema, entities)

Denormalizes an input based on schema and provided entities from a plain object or Immutable data. The reverse of normalize.

基于schema和从普通对象或不可变数据提供的实体对输入数据进行去规范化。 与规范化相反。

Special Note:
Be careful with denormalization. Prematurely reverting your data to large, nested objects could cause performance impacts in React (and other) applications.

小心非规范化。 过早将数据还原到大型嵌套对象可能会对React(和其他)应用程序造成性能影响。

If your schema and data have recursive references, only the first instance of an entity will be given. Subsequent references will be returned as the id provided.

如果您的schema和数据具有递归引用,则只会给出实体的第一个实例。 随后的引用将返回给ID。

  • input: required The normalized result that should be
    de-normalized
    . Usually the same value that was given in the result key of the output of normalize. 通常在规范化输出的结果键中给出相同的值。
  • schema: required A schema definition that was used to get the value for input.
  • entities: required An object, keyed by entity schema names that may appear in the denormalized output. Also accepts an object with Immutable data.

Usage

import { denormalize, schema } from 'normalizr';const user = new schema.Entity('users');
const mySchema = { users: [ user ] }
const entities = { users: { '1': { id: 1 }, '2': { id: 2 } } };
const denormalizedData = denormalize({ users: [ 1, 2 ] }, mySchema, entities);复制代码

Output

{ users: [{ id: 1 },{ id: 2 }]
}复制代码

schema

Array(definition, schemaAttribute)

Creates a schema to normalize an array of entities. If the input value is an Object instead of an Array, the normalized result will be an Array of the Object's values.

创建一个schema来规范化实体数组。 如果输入值是Object而不是Array,则归一化结果将是Object的值的Array。

Note: The same behavior can be defined with shorthand syntax: [ mySchema ]

相同的行为可以用速记语法来定义

  • definition: required A singular schema that this array contains
    or a mapping of schema to attribute values.
需要此数组包含的单一schema 或将schema 映射到属性值。
  • schemaAttribute:
    optional
    (required if definition is not a singular schema) The attribute on each entity found that defines what schema, per the definition mapping, to use when normalizing.
    Can be a string or a function. If given a function, accepts the following arguments:
    • value: The input value of the entity.
    • parent: The parent object of the input array.
    • key: The key at which the input array appears on the parent object.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Array constructor. This method tends to be useful for creating circular references in schema.
使用时,传入的definition将与传递给Array构造函数的原始definition合并。 该方法往往对于在schema中创建循环引用很有用。

Usage

To describe a simple array of a singular entity type:

const data = [ { id: '123', name: 'Jim' }, { id: '456', name: 'Jane' } ];
const userSchema = new schema.Entity('users');const userListSchema = new schema.Array(userSchema);
// or use shorthand syntax:
const userListSchema = [ userSchema ];const normalizedData = normalize(data, userListSchema);复制代码

Output

{entities: {users: {'123': { id: '123', name: 'Jim' },'456': { id: '456', name: 'Jane' }}},result: [ '123', '456' ]
}复制代码

If your input data is an array of more than one type of entity, it is necessary to define a schema mapping.

如果您的输入数据是多个类型的实体的数组,则需要定义一个schema映射。

Note: If your data returns an object that you did not provide a mapping for, the original object will be returned in the result and an entity will not be created.

如果您的数据返回一个未提供映射的对象,则将返回原始对象,并且不会创建一个实体。

For example:

const data = [ { id: 1, type: 'admin' }, { id: 2, type: 'user' } ];const userSchema = new schema.Entity('users');
const adminSchema = new schema.Entity('admins');
const myArray = new schema.Array({admins: adminSchema,users: userSchema
}, (input, parent, key) => `${input.type}s`);const normalizedData = normalize(data, myArray);复制代码

Output

{entities: {admins: { '1': { id: 1, type: 'admin' } },users: { '2': { id: 2, type: 'user' } }},result: [{ id: 1, schema: 'admins' },{ id: 2, schema: 'users' }]
}复制代码

Entity(key, definition = {}, options = {})

  • key: required The key name under which all entities of this type will be listed in the normalized response. Must be a string name.
  • definition: A definition of the nested entities found within this entity. Defaults to empty object.
在该实体内发现的嵌套实体的definition。 默认为空对象。
You do not need to define any keys in your entity other than those that hold nested entities. All other values will be copied to the normalized entity's output.
您不需要在您的实体中定义任何键,除了嵌套实体的键。 所有其他值将被复制到标准化实体的输出。definition不为空表示有嵌套。
  • options:
    • idAttribute: The attribute where unique IDs for each of this entity type can be found.
      Accepts either a string key or a function that returns the IDs value. Defaults to 'id'.
      As a function, accepts the following arguments, in order:
      • value: The input value of the entity.
      • parent: The parent object of the input array.
      • key: The key at which the input array appears on the parent object. 输入的数组出现在父对象上的键。
    • mergeStrategy(entityA, entityB): Strategy to use when merging two entities with the same id value. Defaults to merge the more recently found entity onto the previous.
合并具有相同ID值的两个实体时使用的策略。 默认将最近发现的实体合并到上一个实体。
    • processStrategy(value, parent, key): Strategy to use when pre-processing the entity. Use this method to add extra data, defaults, and/or completely change the entity before normalization is complete. Defaults to returning a shallow copy of the input entity.
预处理实体时使用的策略。 在规范化完成之前,使用此方法添加额外的数据,默认值和/或完全更改实体。 默认返回输入实体的浅拷贝。
Note: It is recommended to always return a copy of your input and not modify the original.
建议始终返回您的输入的副本,而不是修改原件。
The function accepts the following arguments, in order:
  • value: The input value of the entity.
  • parent: The parent object of the input array.
  • key: The key at which the input array appears on the parent object.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Entity constructor. This method tends to be useful for creating circular references in schema.
使用时,传入的definition将与传递给Entity构造函数的原始definition合并。 该方法往往对于在模式中创建循环引用很有用。

Instance Attributes

  • key: Returns the key provided to the constructor.
  • idAttribute: Returns the idAttribute provided to the constructor in options.

Usage

const data = { id_str: '123', url: 'https://twitter.com', user: { id_str: '456', name: 'Jimmy' } };const user = new schema.Entity('users', {}, { idAttribute: 'id_str' });
const tweet = new schema.Entity('tweets', { user: user }, { idAttribute: 'id_str',// Apply everything from entityB over entityA, except for "favorites"mergeStrategy: (entityA, entityB) => ({...entityA,...entityB,favorites: entityA.favorites}),// Remove the URL field from the entityprocessStrategy: (entity) => omit(entity, 'url')
});const normalizedData = normalize(data, tweet);复制代码

Output

{entities: {tweets: { '123': { id_str: '123', user: '456' } },users: { '456': { id_str: '456', name: 'Jimmy' } }},result: '123'
}复制代码

idAttribute Usage

When passing the idAttribute a function, it should return the IDs value.

idAttribute作为key

For Example:

const data = [{ id: '1', guest_id: null, name: 'Esther' },{ id: '1', guest_id: '22', name: 'Tom' },
];const patronsSchema = new schema.Entity('patrons', undefined, {// idAttribute *functions* must return the ids **value** (not key)idAttribute: value => value.guest_id ? `${value.id}-${value.guest_id}` : value.id,
});normalize(data, [patronsSchema]);复制代码

Output

{entities: {patrons: {'1': { id: '1', guest_id: null, name: 'Esther' },'1-22': { id: '1', guest_id: '22', name: 'Tom' },}},result: ['1', '1-22']
}复制代码

Object(definition)

Define a plain object mapping that has values needing to be normalized into Entities.

定义一个普通对象映射,它需要将值归一化为Entities。

Note: The same behavior can be defined with shorthand syntax: { ... }

  • definition: required A definition of the nested entities found within this object. Defaults to empty object.
    You do not need to define any keys in your object other than those that hold other entities. All other values will be copied to the normalized output.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Object constructor. This method tends to be useful for creating circular references in schema.

Usage

// Example data response
const data = { users: [ { id: '123', name: 'Beth' } ] };const user = new schema.Entity('users');
const responseSchema = new schema.Object({ users: new schema.Array(user) });
// or shorthand
const responseSchema = { users: new schema.Array(user) };const normalizedData = normalize(data, responseSchema);复制代码

Output

{entities: {users: { '123': { id: '123', name: 'Beth' } }},result: { users: [ '123' ] }
}复制代码

Union(definition, schemaAttribute)

Describe a schema which is a union of multiple schemas. This is useful if you need the polymorphic behavior provided by schema.Array or schema.Values but for non-collection fields.

描述一个多个schema的并集的schema。 如果您需要由schema.Arrayschema.Values提供的多态性行为,但对于非收集字段,这是非常有用的。

  • definition: required An object mapping the definition of the nested entities found within the input array
  • schemaAttribute: required The attribute on each entity found that defines what schema, per the definition mapping, to use when normalizing.
    Can be a string or a function. If given a function, accepts the following arguments:
    • value: The input value of the entity.
    • parent: The parent object of the input array.
    • key: The key at which the input array appears on the parent object.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Union constructor. This method tends to be useful for creating circular references in schema.

Usage

Note: If your data returns an object that you did not provide a mapping for, the original object will be returned in the result and an entity will not be created.

const data = { owner: { id: 1, type: 'user', name: 'Anne' } };const user = new schema.Entity('users');
const group = new schema.Entity('groups');
const unionSchema = new schema.Union({user: user,group: group
}, 'type');const normalizedData = normalize(data, { owner: unionSchema });复制代码

Output

{entities: {users: { '1': { id: 1, type: 'user', name: 'Anne' } }},result: { owner: { id: 1, schema: 'user' } }
}复制代码

Values(definition, schemaAttribute)

Describes a map whose values follow the given schema.

  • definition: required A singular schema that this array contains
    or a mapping of schema to attribute values.
  • schemaAttribute:
    optional
    (required if definition is not a singular schema) The attribute on each entity found that defines what schema, per the definition mapping, to use when normalizing.
    Can be a string or a function. If given a function, accepts the following arguments:
    • value: The input value of the entity.
    • parent: The parent object of the input array.
    • key: The key at which the input array appears on the parent object.

Instance Methods

  • define(definition): When used, the definition passed in will be merged with the original definition passed to the Values constructor. This method tends to be useful for creating circular references in schema.

Usage

const data = { firstThing: { id: 1 }, secondThing: { id: 2 } };const item = new schema.Entity('items');
const valuesSchema = new schema.Values(item);const normalizedData = normalize(data, valuesSchema);复制代码

Output

{entities: {items: { '1': { id: 1 }, '2': { id: 2 } }},result: { firstThing: 1, secondThing: 2 }
}复制代码

If your input data is an object that has values of more than one type of entity, but their schema is not easily defined by the key, you can use a mapping of schema, much like schema.Union and schema.Array.

Note: If your data returns an object that you did not provide a mapping for, the original object will be returned in the result and an entity will not be created.

For example:

const data = {'1': { id: 1, type: 'admin' }, '2': { id: 2, type: 'user' }
};const userSchema = new schema.Entity('users');
const adminSchema = new schema.Entity('admins');
const valuesSchema = new schema.Values({admins: adminSchema,users: userSchema
}, (input, parent, key) => `${input.type}s`);const normalizedData = normalize(data, valuesSchema);复制代码

Output

{entities: {admins: { '1': { id: 1, type: 'admin' } },users: { '2': { id: 2, type: 'user' } }},result: {'1': { id: 1, schema: 'admins' },'2': { id: 2, schema: 'users' }}
}复制代码



本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540440.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

[转载] 【Java】基础06:HelloWorld入门程序

参考链接: 从Hello World示例开始Java编程 HelloWorld它的中文意思是:“你好,世界”。 仿佛代表着计算机对世界说出来的第一句话,因为它简洁实用,所以被作为入门程序广泛使用。 Java程序开发三步骤:编…

[转载] Java中的命名参数

参考链接: Java命名约定 创建具有许多参数的方法是一个主要的缺点。 每当需要创建这样的方法时,就在空气中闻一闻:这是代码的味道。 强化单元测试,然后进行重构。 没有借口,没有屁股。 重构! 使用构建器模…

[转载] JVM(一):JVM体系结构详解

参考链接: JVM如何工作–JVM体系结构 JVM简介 JVM是Java程序得以运行的平台,也是Java程序可以跨平台的底层支撑,从整体上来看,JVM的主要功能可以分为加载和执行两大块。其中类加载器负责.class文件的寻址与加载&#xff0…

数据库连接池的设计思路及java实现

2019独角兽企业重金招聘Python工程师标准>>> connectionPool.DBConnectionManager [java] view plain copy package connectionPool; import java.sql.Connection; import java.sql.Driver; import java.sql.DriverManager; import java.sql.SQLException; i…

[转载] java虚拟机 jvm 出入java栈 栈空间内存分配

参考链接: Java虚拟机(JVM)堆栈区域 java栈空间是一块线程私有的内存空间,java堆和程序数据密切相关,那么java栈就是和线程执行密切相关。线程最基本的执行行为就是函数的调用。每次函数调用其实是通过java栈传递数据的。 数据结构中的栈的…

SVN命令行更新代码

命令列表 svn help查看帮助信息 Available subcommands: add auth blame (praise, annotate, ann) cat changeli…

[转载] Java中Runtime的使用

参考链接&#xff1a; Java中的JVM的关闭挂钩 1 JDK中Runtime的定义 http://blog.csdn.net/lysnow_oss/archive/2007/05/12/1606349.aspx <转载> 那就首先说点Runtime类吧&#xff0c;他是一个与JVM运行时环境有关的类&#xff0c;这个类是Singleton的。我…

窄带物联网(NB-IoT)初步了解

哪有什么天生如此&#xff0c;只是我们天天坚持。既然总有人要赢的话&#xff0c;为什么不能是我呢&#xff1f;[TOC] 什么是NB-Iot? 基于蜂窝的窄带物联网&#xff08;Narrow Band Internet of Things, NB-IoT&#xff09;成为万物互联网络的一个重要分支。NB-IoT构建于蜂窝网…

ai人工智能_人工智能能力问答中的人工智能不确定性

ai人工智能1) Which of the following is true with respect to uncertainty in AI systems? Uncertainty arises when we are not 100 percent confident in our decisionsWhenever uncertainty arises, there is needs to be an estimation taken for getting to any conclu…

[转载] 弄懂JDK、JRE和JVM到底是什么

参考链接&#xff1a; JDK JRE和JVM之间的区别 首先是JDK JDK(Java Development Kit) 是 Java 语言的软件开发工具包(SDK)。 在JDK的安装目录下有一个jre目录&#xff0c;里面有两个文件夹bin和lib&#xff0c;在这里可以认为bin里的就是jvm&#xff0c;lib中则是jvm工作所需要…

mcq 队列_人工智能搜索问题能力问题解答(MCQ)

mcq 队列1) The main Aim of the AI system is to provide a solution for real-life problems by acting and thinking humanly. Whenever an agent is confronted by a problem, what is the first step that it follows towards searching a solution to the problem? Sear…

JavaOne大事纪:IBM谈OpenJ9和Open Liberty

JavaOne大会以IBM陈述其最近对开源社区的贡献作为开场&#xff1a;OpenJ9、Open Liberty和MicroProfile。IBM杰出工程师John Duimovich做了“IBM和Java&#xff1a;助力下一代创新”的开场演讲。\\读者可以回看演讲视频。\\Duimovich说IBM之所以致力于推动Java生态系统的创新&a…

[转载] JVM中对象的回收过程

参考链接&#xff1a; JVM是否创建Main类(具有main()的类)的对象 当我们的程序开启运行之后就&#xff0c;就会在我们的java堆中不断的产生新的对象&#xff0c;而这是需要占用我们的存储空间的&#xff0c;因为创建一个新的对象需要分配对应的内存空间&#xff0c;显然我的内…

c语言格式对齐填充_C ++中类的大小 课堂上的填充和对齐| 派生类的大小

c语言格式对齐填充Prerequisite: 先决条件&#xff1a; sizeof() operator in C/C C / C 中的sizeof()运算符 Size of struct in C C中的struct大小 We know that a struct size is not only the summation of all the data members, rather its the minimum sum guaranteed. …

ELK系列~对fluentd参数的理解

这段时候一直在研究ELK框架&#xff0c;主要集成在对fluentd和nxlog的研究上&#xff0c;国内文章不多&#xff0c;主要看了一下官方的API&#xff0c;配合自己的理解&#xff0c;总结了一下&#xff0c;希望可以帮到刚入行的朋友们&#xff01; Fluentd&#xff08;日志收集与…

[转载] Java中的50个关键字

参考链接&#xff1a; Java平台如何独立 Java中的50个关键字 关键字也称为保留字&#xff0c;是指java语言中规定了特定含义的标示符。对于保留字&#xff0c;用户只能按照系统规定的方式使用&#xff0c;不能自行定义。Java中有50个常用关键字&#xff1a; 与数据类型相关…

MySQL 直接存储图片并在 html 页面中展示,点击下载

数据库实体类&#xff1a; package com.easy.kotlin.picturecrawler.entityimport java.util.* import javax.persistence.*Entity Table(indexes arrayOf(Index(name "idx_url", unique true, columnList "url"),Index(name "idx_category"…

css 文本背景色透明_如何使用CSS将文本或图像的背景设置为透明?

css 文本背景色透明Introduction: 介绍&#xff1a; In web development, there are numerous ways by which we can style our websites or web pages. You can make use of lots of properties for creating attractive and responsive websites. 在Web开发中&#xff0c;我…

[转载] 1.1Java使用JDBC原生方式连接MySql数据库

参考链接&#xff1a; Java数据库连接JDBC驱动程序 前言&#xff1a;今天有朋友问我原生的java连接数据库&#xff0c;因为框架的使用&#xff0c;如果基础不牢固的人&#xff0c;是很容易遗忘原生的连接方式。今天正好趁此做一下回顾&#xff1a; 这里只考虑原生方式&#x…

maven安装及集成myeclipse

第一步&#xff1a;下载和安装 1、官网下载Maven&#xff1a;http://maven.apache.org/download.cgi 2、解压到一个文件夹2、设置环境变量&#xff1a;如&#xff1a;M2_HOME&#xff1a;D:\JAVA\apache-maven-3.0.5在path中添加;%M2_HOME%\bin;第二步&#xff1a;和MyEclipse集…