Angularを使用してフォームを作成しています。私のフォームには があり、タグとしてselectのタイプがあります。以下は Anuglarでタグが正しく機能しない
は私のコードです: <div class="form-group" ng-class="{ 'has-error': form.$submitted && form['{{field.id}}'].$invalid }" ng-if="field.type === 'select'">
<select>
<div class="" ng-repeat="value in field.values">
<option value="">{{value.title}}</option>
</div>
</select>
</div>
そして、ここでfield.valuesためのJSONファイルです:
"values": [
{
"id": 0,
"title": "Not Selected"
},
{
"id": 1,
"title": "Yes"
},
{
"id": 2,
"title": "No"
}
]
のJavascript(変更が行われ):
app.controller( 'I129Ctrl' 、 '$ scope'、 '$ http'、 'JSONModelsService'、 関数($ scope、$ http、JSONModelsService){
var formData = {};
$scope.groups = [];
$scope.sections = [];
$scope.fields = [];
//below is basically equivalent to routing
JSONModelsService.get(['test', 'Valid Passport'])
.then(function (response) {
console.log(response);
// $scope.group = response.data.groups[0];
$scope.groups = response.data.groups;
$scope.sections = $scope.groups.sections;
$scope.fields = $scope.groups.sections.fields;
});
基本的には、まずfield.type
がselect
と等しいかどうかを確認します。もしそうなら、私は選択されたタイプの質問で値を求めたい。しかし、それは私が想像するように働いていません。私は間違って何をしていますか?
あなたが投稿したJsonが正しいか、Jsonの一部を投稿したばかりですか?私はJSONの間違いを見てそれ自身を – Prasad
'ng-class'を' ng-class = "{'has-error':formに変更してください:$ submit && form [field.id]。$ invalid}" 'そうすれば、問題全体が修正されます。 'plunkr/fiddle'でもっと説明を付けることができますか? –
私は有効なjsonを持っていますが、ここに収まるには長すぎます。私はちょうどその一部を入れました。 – Kahsn