我最近在 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
请帮我获取模型的对象,然后将数据插入表中。