我需要在选择列表中的每个选择中添加一个ng模型,以便可以在angularjs中观看每个选择。 这是我的ChoiceType。我尝试添加一个attr,但仅将其添加到整个列表中,而不是列表中的每个选择,我还尝试添加一个choice_attr,但是没有用。
->add('type', ChoiceType::class, [
'choices' => Type::getChoices(),
'multiple' =>false,
'expanded' =>true,
])
这是我的树枝文件。
<div ng-controller="CreditServiceController">
{{ form_row(form.type) }}
这是我的有角js。
app.controller('CreditServiceController', function ($scope, $timeout) {
$scope.serviceType = "";
$scope.$watch('serviceType', function () {
console.log('hello');
})