docs(API): 翻译完了 SimpleChange
This commit is contained in:
parent
7c7733c3af
commit
7b2226516a
@ -91,8 +91,8 @@
|
|||||||
[x] | common/http/HTTP_INTERCEPTORS | 0.18
|
[x] | common/http/HTTP_INTERCEPTORS | 0.18
|
||||||
[x] | platform-browser/DomSanitizer | 0.18
|
[x] | platform-browser/DomSanitizer | 0.18
|
||||||
[x] | core/PipeTransform | 0.18
|
[x] | core/PipeTransform | 0.18
|
||||||
[ ] | core/SimpleChange | 0.18
|
[x] | core/SimpleChange | 0.18
|
||||||
[ ] | core/SimpleChanges | 0.18
|
[x] | core/SimpleChanges | 0.18
|
||||||
[ ] | forms/NgSelectOption | 0.17
|
[ ] | forms/NgSelectOption | 0.17
|
||||||
[ ] | common/PercentPipe | 0.17
|
[ ] | common/PercentPipe | 0.17
|
||||||
[ ] | forms/ValidatorFn | 0.17
|
[ ] | forms/ValidatorFn | 0.17
|
||||||
|
@ -28,11 +28,17 @@ export function devModeEqual(a: any, b: any): boolean {
|
|||||||
* Indicates that the result of a {@link Pipe} transformation has changed even though the
|
* Indicates that the result of a {@link Pipe} transformation has changed even though the
|
||||||
* reference has not changed.
|
* reference has not changed.
|
||||||
*
|
*
|
||||||
|
* 表示 {@link Pipe} 转换的值已经变化了 —— 即使其引用并没有变。
|
||||||
|
*
|
||||||
* Wrapped values are unwrapped automatically during the change detection, and the unwrapped value
|
* Wrapped values are unwrapped automatically during the change detection, and the unwrapped value
|
||||||
* is stored.
|
* is stored.
|
||||||
*
|
*
|
||||||
|
* 包装过的值会在变更检测期间自动解包,并保存解包过的值。
|
||||||
|
*
|
||||||
* Example:
|
* Example:
|
||||||
*
|
*
|
||||||
|
* 例子:
|
||||||
|
*
|
||||||
* ```
|
* ```
|
||||||
* if (this._latestValue === this._latestReturnedValue) {
|
* if (this._latestValue === this._latestReturnedValue) {
|
||||||
* return this._latestReturnedValue;
|
* return this._latestReturnedValue;
|
||||||
@ -44,33 +50,47 @@ export function devModeEqual(a: any, b: any): boolean {
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
export class WrappedValue {
|
export class WrappedValue {
|
||||||
/** @deprecated from 5.3, use `unwrap()` instead - will switch to protected */
|
/** @deprecated from 5.3, use `unwrap()` instead - will switch to protected
|
||||||
|
*
|
||||||
|
* @deprecated 从 5.3 将会变成受保护的属性,请用 `unwrap()` 代替
|
||||||
|
*/
|
||||||
wrapped: any;
|
wrapped: any;
|
||||||
|
|
||||||
constructor(value: any) { this.wrapped = value; }
|
constructor(value: any) { this.wrapped = value; }
|
||||||
|
|
||||||
/** Creates a wrapped value. */
|
/** Creates a wrapped value.
|
||||||
|
*
|
||||||
|
* 创建一个包装过的值。
|
||||||
|
*/
|
||||||
static wrap(value: any): WrappedValue { return new WrappedValue(value); }
|
static wrap(value: any): WrappedValue { return new WrappedValue(value); }
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the underlying value of a wrapped value.
|
* Returns the underlying value of a wrapped value.
|
||||||
* Returns the given `value` when it is not wrapped.
|
* Returns the given `value` when it is not wrapped.
|
||||||
|
*
|
||||||
|
* 如果值(`value`)是包装过的,则返回它幕后的值;否则直接返回它本身。
|
||||||
**/
|
**/
|
||||||
static unwrap(value: any): any { return WrappedValue.isWrapped(value) ? value.wrapped : value; }
|
static unwrap(value: any): any { return WrappedValue.isWrapped(value) ? value.wrapped : value; }
|
||||||
|
|
||||||
/** Returns true if `value` is a wrapped value. */
|
/** Returns true if `value` is a wrapped value.
|
||||||
|
*
|
||||||
|
* 如果 `value` 是包装过的值,则返回 `true`。
|
||||||
|
*/
|
||||||
static isWrapped(value: any): value is WrappedValue { return value instanceof WrappedValue; }
|
static isWrapped(value: any): value is WrappedValue { return value instanceof WrappedValue; }
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a basic change from a previous to a new value.
|
* Represents a basic change from a previous to a new value.
|
||||||
*
|
*
|
||||||
|
* 表示从旧值到新值的一次变更。
|
||||||
*/
|
*/
|
||||||
export class SimpleChange {
|
export class SimpleChange {
|
||||||
constructor(public previousValue: any, public currentValue: any, public firstChange: boolean) {}
|
constructor(public previousValue: any, public currentValue: any, public firstChange: boolean) {}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check whether the new value is the first value assigned.
|
* Check whether the new value is the first value assigned.
|
||||||
|
*
|
||||||
|
* 检查该新值是否从首次赋值得来的。
|
||||||
*/
|
*/
|
||||||
isFirstChange(): boolean { return this.firstChange; }
|
isFirstChange(): boolean { return this.firstChange; }
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user