chainlist / svelte-forms

Svelte forms validation made easy

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to handle array data type?

sandgupta23 opened this issue · comments

{
  fname: "john",
  lname: "doe"
  interest_id: [1,2,3,4,5,6]
}

field can only be used for primitive data (fname and lname) but is there anything to handle array data (interest_id)

Is this not the general use case form inputs, they are strings only afaik