0
コントローラのコードをAngular Schema Formのオプションを選択するのに使用したいだけです。私はHTMLマークアップでは、以下のいる角度スキーマフォームを使用してコントローラでオプションを選択するにはどうすればよいですか?
:
今<div sf-schema=schema sf-form=form sf-model=formData></div>
、私はコントローラにこれをしたい:
//controller.js
//This is not working
$scope.formData.select_1 = 4;
$scope.formData.select_2 = 3;
//Schema for the form
$scope.schema =
"select_1": {
"type": "string",
"enum": ["1", "2", "3", "4", "5", "6"]
},
"select_2": {
"type": "string",
"enum": ["1", "2", "3", "4", "5", "6"]
}
$scope.form = //All the form properties here
ありがとうございます。しかし、私はあなたが行った変更を行った後にそれを働かせました。 –