Skip to content

post form data as json #850

Answered by lovasoa
setop asked this question in Q&A
Mar 8, 2025 · 1 comments · 1 reply
Discussion options

You must be logged in to vote

Yes, you can do that either in js with a small script

document.querySelector('form').addEventListener('submit', async e => {
  e.preventDefault();
  
  const data = Object.fromEntries(new FormData(e.target));
  
  const res = await fetch(e.target.action, {
    method: 'POST',
    headers: { 'Content-Type': 'application/json' },
    body: JSON.stringify(data)
  });
});

or do it in sqlpage in two steps:

SELECT 'form' AS component, 'form1_process.sql' AS action, 'Next' AS validate;
SELECT 'name' AS name, 'Name' AS label, TRUE AS required;
SELECT 'email' AS name, 'Email' AS label, 'email' AS type, TRUE AS required;
SELECT 'age' AS name, 'Age' AS label, 'number' AS type;
-- Create a JSON objec…

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@setop
Comment options

Answer selected by setop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants