6

我正在尝试使用库class-transformerhttps://github.com/typestack/class-transformer)将 typescript 类序列化为不接受海关类型的 firebase。

问题是某些数据实际上是与 firebase 兼容的数据,例如 GeoPoint 格式的“坐标”。

我有这个类被序列化:

export abstract class StopStep extends Step {
  id: string;
  name: string;
  description: string;
  pointOfInterest: PointOfInterest | null;
  address: string;
  coordinates: firebase.firestore.GeoPoint;
}

我想防止“坐标”字段被转换。它应该存在,而不是未转换。

我尝试使用@Transform(({value})=>...),但它似乎只是一个“附加”转换,它不允许我保持相同的格式。

我也尝试过Exclude,但是该字段不再存在。

有没有办法用这个库来完成这个?

4

2 回答 2

6

答:我已经分析和调试了整个TransformOperationExecutor.ts,简单地说,没有内置方法可以抑制这个执行器尝试进行的无数转换。我想也许一起移除@Type装饰器可以实现目标。但即使缺少类型信息,该库仍然尝试尽可能地将复杂对象转换为普通对象。@Transform(({value})=>...)不起作用的原因是,即使对于返回的值,也有多个检查来确定转换后的值是否需要任何进一步的转换才能变得“普通”。

解决方法: 我看到的唯一解决方案是自己构建该功能。我可以提供以下实现来模拟@Ignore功能:

import { classToPlain, ClassTransformOptions, Transform, TransformFnParams } from 'class-transformer';

// New decorator to be used on members that should not be transformed.
export function Ignore() {
    // reuse transform decorator
    return Transform((params: TransformFnParams) => {
        if (params.type == TransformationType.CLASS_TO_PLAIN) {
            // class-transformer won't touch functions,
            // so we use function-objects as container to skip transformation.
            const container = () => params.value;
            container.type = '__skipTransformContainer__';

            return container;
        }
        // On other transformations just return the value.
        return params.value;
    });
}

// Extended classToPlain to unwrap the container objects
export function customClassToPlain<T>(object: T, options?: ClassTransformOptions) {
    const result = classToPlain(object, options);
    unwrapSkipTransformContainers(result);
    return result;
}

// Recursive function to iterate over all keys of an object and its nested objects.
function unwrapSkipTransformContainers(obj: any) {
    for (const i in obj) {
        if (obj.hasOwnProperty(i)) {
            const currentValue = obj[i];
            if (currentValue?.type === '__skipTransformContainer__') {
                // retrieve the original value and also set it.
                obj[i] = currentValue();
                continue;
            }

            // recursion + recursion anchor
            if (typeof currentValue === 'object') {
                unwrapSkipTransformContainers(currentValue);
            }
        }
    }
}

该解决方案利用类转换器不会转换函数(get/set 函数除外),因为它们不是普通对象的一部分。我们重用Transform装饰器来包装我们不想用函数转换的成员。我们还用字符串标记了这些函数,__skipTransformContainer__以便以后轻松找到它们,而不会意外调用错误的函数。然后我们编写一个 new customClassToPlain,它首先调用默认值classToPlain,然后对结果调用递归解包函数。调用 unwrap 函数unwrapSkipTransformContainer并递归搜索所有__skipTransformContainer__容器以检索未转换的值。

用法:

export abstract class StopStep extends Step {
  id: string;
  name: string;
  description: string;
  pointOfInterest: PointOfInterest | null;
  address: string;
  @Ignore()
  coordinates: firebase.firestore.GeoPoint;
}

class ExampleStep extends StopStep {/*logic*/}
    
const step = new ExampleStep();
const plain = customClassToPlain(step);
于 2021-03-22T17:40:15.587 回答
0

坏消息; Micro S. 是对的。即使您有自定义转换功能,“class-transformer”也会强制应用默认转换。这限制了自定义转换函数的使用,并且意味着“你不能返回你想要的东西”。

好消息; JavaScript 是一种高度灵活的语言。这意味着您可以覆盖类原型的任何函数。下面的代码在不损失性能的情况下修复了这个问题。

import isPlainObject from 'putil-isplainobject';

const oldTransformFn = TransformOperationExecutor.prototype.transform;
TransformOperationExecutor.prototype.transform =
  function transform(source: Record<string, any> | Record<string, any>[] | any,
                     value: Record<string, any> | Record<string, any>[] | any,
                     targetType: Function | TypeMetadata,
                     // eslint-disable-next-line @typescript-eslint/no-unused-vars
                     arrayType: Function,
                     // eslint-disable-next-line @typescript-eslint/no-unused-vars
                     isMap: boolean,
                     // eslint-disable-next-line @typescript-eslint/no-unused-vars
                     level?: number): any {
    // @ts-ignore
    if (isPlainObject(value) && targetType === Object) {
      return value;
    }
    // @ts-ignore
    return oldTransformFn.apply(this, arguments);
  };
于 2021-08-06T09:16:26.040 回答