如何在zf 2中从表单中调用模型中的函数?

时间:2013-04-17 04:27:54

标签: zend-framework2

我正在使用zend框架2.我想从zend表单中调用模型中的函数。

情况是我有一个组合框&我需要绑定数据库中的数据以填充其选项和值。

这是我的zend形式的选择标签

$this->add(array(

    'name' => 'ddlcountry',

    'type' => 'Zend\Form\Element\Select',

    'options' => array(

        'label' => 'Country',

        'value_options' => (here I've to call function),

    ),

));

对于这个值选项,我想调用下面模型中的函数是我在模型中的函数:

public function fetchcountry()
{

    $this->adapter = $this->getServiceLocator()->get('db');

    $dbAdapterConfig = $this->adapter;       

    $dbAdapter = $dbAdapterConfig;        

    $driver = $dbAdapter->getDriver();

    $connection = $driver->getConnection();

    $result = $connection->execute("CALL sp_showcountry()");

    $statement = $result->getResource();

    $resultdata = $statement->fetchAll(\PDO::FETCH_OBJ);

    return $resultdata;
}

1 个答案:

答案 0 :(得分:2)

在您撰写此类问题之前,请至少检查本页的前10个问题,因为您的问题最近被问过几个问题;)

请参阅我在这里提供的答案:

或者参考我的Blogpost,它详细介绍了您的问题