我正在使用formIO。我已经创建了表格并将其显示在我的网站上,一些用户会来填写该表格。我如何保存该数据。所有表单都是使用io表单动态创建的。
Formio.builder(document.getElementById('builder'), {}, {
builder: {
basic: false
customBasic: {
title: 'Basic Components',
default: true,
weight: 0,
components: {
textfield: true,
textarea: true,
email: true
}
}
layout: {
components: {
table: false
}
}
}}).then(function (form) {
$("#saveForm").on('click', function (submission) {
var id = document.querySelector('[id^=builder-element-]').id
var content = $(".formarea:eq(0)>div");
var finalHtml = "";
$.each(content, function (value, index) {
var el = $(index);
finalHtml += el.html();
})
// ajax call to save html
});