我需要使用Alpaca Forms动态组装一个表单。我有下面的代码:
$("#form").alpaca({
"schema": {
"type":"object",
"properties": {
"email": {
"type":"string",
"title":"E-mail",
"required":true
},
"mensagem": {
"type":"string",
"title":"Mensagem",
"required":true
}
}
}
});
它需要使用变量来填充,才能具有通用性,因为表单的字段数量总是会有所不同。例如:有时除了";电子邮件"管理;属性,我将拥有";assunto"再缓和"destinatario";属性
它需要看起来像这样:
$("#form").alpaca({
"schema" : { schemaVariable }
});
您想要实现的是可能的,您只需要从变量中删除大括号,并使用正确的JSON对象声明。
"schema" : schemaVariable
这是一把工作小提琴。如果你还需要别的东西,告诉我。