Function validateFormData

  • Form data decoder with type validation.

    typia.http.validateFormData() is a function decoding FormData instance, with automatic type casting to the expected type. When roperty type be defined as boolean or Blob type, typia.http.validateFormData() will cast the value to the expected type when decoding.

    Also, after decoding, typia.http.validateFormData() performs type validation to the decoded value by combining with validate function. Therefore, when the decoded value is not following the T type, IValidation.IFailure would be returned. Otherwise, x@xxxx IValidation.ISuccess} would be returned.

    By the way, as FormData is not enough to express complex data structures, typia.http.validateFormData() function has some limitations. If target type T is not following those restrictions, compilation errors would be occured.

    1. Type T must be an object type
    2. Do not allow dynamic property
    3. Only boolean, bigint, number, string, Blob, File or their array types are allowed
    4. By the way, union type never be not allowed

    Type Parameters

    • T extends object

      Expected type of decoded value

    Parameters

    • input: FormData

      FormData instance

    Returns IValidation<Resolved<T>>

    Validation result with decoded form FormData

    Jeongho Nam - https://github.com/samchon