✅ How would you store dynamic forms?
Hi! I want to make an application for building dynamic forms. There will be form template constructor for admin user and page for regular use for fill form. Form field has name, type (string, number, boolean), order index on the page. Administator can open filled form and see filled fields. Would you store form template as a json string in sql db, use mongo db or store in sql as [ table template(id, name, description) -> table template field (id, template_id, name, type, order)]? How would you store data that user filled into form?
5 Replies