如何在ChoiceType symfony中添加ng-model?

时间:2018-11-19 16:39:37

标签: php angularjs symfony

我需要在选择列表中的每个选择中添加一个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');
})

0 个答案:

没有答案