我有一个项目,我必须根据SQL Server存储过程中的值动态构建表模板。
我有以下记录
QuestD QuestionType ResponseCount Question
2806 E 1 Organization Name:
2807 E 1 Contact Name:
2808 E 4 Rider Name:
2815 C 1 Date Requested (Radio Button):
2816 C 4 Event Selected (Checkbox):
字符串
在这里,Type = E表示build <input tag ResponseCount = 1表示问题旁边只有一个input tag。
但ReponseCount = 4意味着我需要4个输入标签需要旁边的问题。
对于QuustionType = C意味着=它可以是Radio或Checkboxes。但对于Radio或Checkbox,值将来自数据库。
请指导我如何继续解决这个动态问题。我从来没有处理过用angularJS生成动态HTML内容。
可以用angularJS来构建表吗?
[
{
"QuestinID": 2806,
"QuestionType": "E",
"ResponseCount": 1,
"Question": "Organization Name:"
},
{
"QuestinID": 2807,
"QuestionType": "E",
"ResponseCount": 1,
"Question": "Contact Name: "
},
{
"QuestinID": 2804,
"QuestionType": "E",
"ResponseCount": 4,
"Question": "Rider Name:"
},
{
"QuestinID": 2805,
"QuestionType": "C",
"ResponseCount": 1,
"Question": "Mobility or Other Challenges?"
},
{
"QuestinID": 2815,
"QuestionType": "C",
"ResponseCount": 1,
"Question": "Date Requested:"
},
{
"QuestinID": 2816,
"QuestionType": "C",
"ResponseCount": 4,
"Question": "Event Selected:"
}
]
型
对于选定日期:
[ '01-JAN-2019', '02-JAN-2019', '03-JAN-2019', '03-JAN-2019' ]
型
对于所选事件:
[ 'Event1','Event2','Event3','Event4']
型
的数据
我希望看到
<label>Rider 1:</label>
<input type="text" ng-model="item.rider1" /> <br />
<label>Rider 2:</label>
<input type="text" ng-model="item.rider2" /> <br />
<label>Rider 3:</label>
<input type="text" ng-model="item.rider3" /> <br />
<label>Rider 4:</label>
<input type="text" ng-model="item.rider4" />
型
1条答案
按热度按时间bbmckpt71#
正如georgeawg在评论中所说的那样,这个答案可能不适合新用户:
应该避免在AngularJS表达式中使用函数调用,因为这些函数在每个摘要周期都会被调用多次
像这样的东西应该对你有用
HTML
字符串
js
型
一些重要的事情要记住
1.您可以使用ng-repeat根据需要增加输入标记的折痕
1.您可以使用ng-if指令来显示不同情况下的不同html
Demo
根据georgeawgs在评论中的建议改进了答案。
js
型
HTML
型
New Demo