我有一个用户必须回答的问题列表。为此,我准备了一个表格。 我得到的数字很多评论textarea.Now无论我在第一个盒子上输入什么,我得到第二。
html表单是
<form>
<div class="list" ng-repeat="question in questions.data.Question" >
<div class="item item-divider">
{{question.text}}
</div>
<label class="item item-input" ng-if="question.type =='comment'">
<textarea placeholder="Comments" ng-model=answer.comments></textarea>
</label>
</div>
<button type="submit" class="button button-positive" ng-click="feedback()"> Submit</button>
<form>
在我的控制器中我定义了
$scope.answer=t={};
$scope.feedback=function(){
var a =t;
console.log(a);
}
另一个问题是我想要问题id和它的评论被张贴所以我已经定义了变量$ scope.answer以便我得到它的数组格式如下所示。但我在控制台中得到错误
answer=[
{
"questionid": "6"
"comments": "blah blah"
},
{
"questionid":7
"comments":"blah blah"
}]