Create Row
{{ui.form.value}}Sending data as an object
{
name: "John",
age: 30
}INSERT INTO users (name, age) VALUES ('John', 30){
id: 23,
created_at: "2022-10-21",
// this value will not be sent to the server
required_at: undefined,
}Adding additional values
Changing values
Deleting unnecessary values
Joining array values
Using default values
Sending data field by field

Last updated
Was this helpful?