我正在尝试将 anular js 与 symfony2 一起使用,但我正在努力将 Angular 集成到 Symfony2
我在 symfony2 中有以下表单类
public function buildForm(FormBuilder $builder, array $options)
{
$builder
->add('name','text')
->add('address','textarea',array('required'=>false))
->add('city','text')
->add('state','text',array('required'=>false))
}
我在twing中渲染表单,下面是代码
<form action="{{ path('customer_create') }}" method="post" name="form1" ng-controller="MainCtrl" {{ form_enctype(form) }} >
{{ form_widget(form._token) }}
<div>{{ form_label(form.name) }} {{ form_widget(form.name) }}</div>
<div>{{ form_label(form.email) }} {{ form_widget(form.email) }}</div>
<div>{{ form_label(form.address) }} {{ form_widget(form.address) }}</div>
<div>{{ form_label(form.city) }} {{ form_widget(form.city) }}</div>
<br><br><br> <button type="submit" style="float:left;text-align:left;margin-right:10px">{% trans %}Create{% endtrans %}</button>
</form>
我如何在其中使用 Angular js?