4

我有一个包含美国各州列表的文件。
阿拉巴马
阿拉斯加
等..

在 symfony 2.0 中,我使用 ChoiceListInterface.php 在我的表单中使用它。我只是写了这个:

<?php

namespace MyBundle\Form;

use Symfony\Component\Form\Extension\Core\ChoiceList\ChoiceListInterface;

class StateChoiceList implements ChoiceListInterface
{
    public function getChoices()
    {
        $lines = file('listes/us_states.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
        // fill the array
        $arr = array();
        foreach ($lines as $line) {
            $arr[$line] = $line;
        }
        return $arr;

    }
}

但是现在在 ChoiceListInterface 中还有 7 个其他功能需要实现:

public function getValues();
public function getPreferredViews();
public function getRemainingViews();
public function getValuesForChoices(array $choices);
public function getIndicesForChoices(array $choices);
public function getIndicesForValues(array $values);

我已经阅读了文档http://api.symfony.com/2.1/Symfony/Component/Form/Extension/Core/ChoiceList/ChoiceList.html但就我而言,我觉得不清楚,我真的不明白如何实施他们。

有人可以帮忙吗?非常感谢

4

1 回答 1

5

您可以扩展LazyChoiceList并实现loadChoiceList()方法,您可以在其中返回一个新的ChoiceList对象,其中填充了从文件中读取的值。

于 2012-11-06T20:29:36.167 回答