用变量填充羊驼属性
Fill alpaca properties with a variable
我需要 assemble 使用 Alpaca Forms 动态创建一个表单。我有以下代码:
$("#form").alpaca({
"schema": {
"type":"object",
"properties": {
"email": {
"type":"string",
"title":"E-mail",
"required":true
},
"mensagem": {
"type":"string",
"title":"Mensagem",
"required":true
}
}
}
});
并且需要使用变量来填充它以使其具有通用性,因为表单的字段数量总是会变化。例如:有时除了“email”、“mensagem”属性外,我还会有“assunto”、“remetente”、“destinatario”属性
它需要看起来像这样:
$("#form").alpaca({
"schema" : { schemaVariable }
});
您想要实现的是可能的,您只需要从变量中删除大括号并使用正确的 JSON 对象声明。
"schema" : schemaVariable
这是一个有效的 fiddle。
如果您需要其他东西,请告诉我。
我需要 assemble 使用 Alpaca Forms 动态创建一个表单。我有以下代码:
$("#form").alpaca({
"schema": {
"type":"object",
"properties": {
"email": {
"type":"string",
"title":"E-mail",
"required":true
},
"mensagem": {
"type":"string",
"title":"Mensagem",
"required":true
}
}
}
});
并且需要使用变量来填充它以使其具有通用性,因为表单的字段数量总是会变化。例如:有时除了“email”、“mensagem”属性外,我还会有“assunto”、“remetente”、“destinatario”属性
它需要看起来像这样:
$("#form").alpaca({
"schema" : { schemaVariable }
});
您想要实现的是可能的,您只需要从变量中删除大括号并使用正确的 JSON 对象声明。
"schema" : schemaVariable
这是一个有效的 fiddle。 如果您需要其他东西,请告诉我。