0

我最近在 Magento 2 中创建了一个模块。现在我从前端 phtml 文件中的数据库中获取数据。代码如下。

 try
{
    $question = $this->_objectManager->create('Magecomp\Firstmodule\Model\Firstmodule');
    $question->setTitle('SimpleQuestion');
    $question->save();
}
catch(Exception $e)
{
     echo $e->getMessage();
}

但我收到以下错误:

 Notice: Undefined property: Magecomp\FirstModule\Block\FirstModule::$_objectManager in C:\xampp\htdocs\magento2\lib\internal\Magento\Framework\View\TemplateEngine\Php.php on line 113

请帮我获取模型的对象,然后将数据插入表中。

4

1 回答 1

1

这是我的索引操作代码,其中我创建了 objectManager 的对象并使用 objectManager 成功地将数据添加到数据库中。

namespace Test\Firstmodule\Controller\Index;
class Index extends \Magento\Framework\App\Action\Action
{

    public function execute()
   {
        $model = $this->_objectManager->create('Test\FirstModule\Model\Firstmodule');
        $model->setTitle('What is Question ?');
        $model->save();
        $this->_view->loadLayout();
        $this->_view->getLayout()->initMessages();
        $this->_view->renderLayout();
   }
}
于 2015-08-19T06:07:28.783 回答