4

有没有人实现过 sonata_type_model_reference 表单类型?

我需要链接州和国家/地区的关系,并且我在幻灯片上阅读到 sonata_type_model_reference 可以实现,但我找不到任何文档。

如何实施?或者还有什么其他选项可以将两个或多个字段与数据库/模型数据关联/链接?

4

1 回答 1

0

在今天之前,我使用自定义 AJAX 来实现这一点。

客户 :

// Override of admin-bundle/Resources/Views/CRUD/base_edit.html.twig

{% block javascripts %}
  {{ parent() }}
  <script type="text/javascript">
    $(document).ready(function() {
      $('#{{ admin.uniqId }}_parent').change(function() {
        var parent = $(this);
        var child = $('#{{ admin.uniqId }}_child');
        $.get('/admin/child/get_choices/' + parent.val(), function(data) {
          child.empty().append(data);
        }, 'text')
        .then(function() {
          var childFirstOption = child.find('option:first');
          var childDisplayText = $("#field_widget_{{ admin.uniqId }}_child .select2-chosen");
          childFirstOption.attr("selected", true);
          childDisplayText.text(childFirstOption.text());
        });
      });
    });
  </script>
{% endblock %}

服务器:

// src/App/AdminBundle/Controller/ChildAdminController.php

class ChildAdminController extends Controller
{
    //...

    public function getChoicesAction($parent)
    {
        $html = "";
        $parent = $this->getDoctrine()
            ->getRepository('AppAdminBundle:Parent')
            ->find($parent)
        ;
        $choices = $parent->getChilds();

        foreach($choices as $choice) {
            $html .= '<option value="' . $choice->getId() . '" >' . $choice->getLabel() . '</option>';
        }

        return new Response($html);
    }

    //...
}

// src/App/AdminBundle/Admin/ChildAdmin.php

//...
use Sonata\AdminBundle\Route\RouteCollection;

class ChildAdmin extends Admin
{
    //...

    protected function configureRoutes(RouteCollection $collection)
    {
        $collection->add('get_choices', 'get_choices/{parent}', array(), array(), array('expose' => true));
    }

    // ...
}

我会尽快实现 sonata_type_model_reference 并返回这里进行编辑。

于 2016-01-13T19:07:05.170 回答