Membuat Modul dan Penghala HelloWorld
Untuk mencipta modul HelloWorld yang mudah dan mengkonfigurasi penghalanya:
Buat Modul XML:
<config> <modules> <MyCompanyName_HelloWorld> <active>true</active> <codePool>local</codePool> </MyCompanyName_HelloWorld> </modules> </config>
Konfigurasikan Penghala:
<config> <frontend> <routers> <helloworld> <use>standard</use> <args> <module>MyCompanyName_HelloWorld</module> <frontName>helloworld</frontName> </args> </helloworld> </routers> </frontend> </config>
Buat Pengawal Nama Depan:
class MyCompanyName_HelloWorld_IndexController extends Mage_Core_Controller_Front_Action { public function indexAction() { echo "Hello World"; } }
Segarkan semula Cache:
Menambah Pengawal dan Interaksi Model
Untuk menambah pengawal yang berinteraksi dengan a model:
Buat Pengawal:
class MyCompanyName_HelloWorld_ShowRowController extends Mage_Core_Controller_Front_Action { public function indexAction() { $row = Mage::getModel('mymodel/mymodel')->load(10); echo $row->getData('id'); } }
Konfigurasikan Penghala (jika perlu):
<config> <frontend> <routers> <helloworld> <use>standard</use> <args> <module>MyCompanyName_HelloWorld</module> <frontName>helloworld</frontName> </args> </helloworld> <show_row> <use>standard</use> <args> <module>MyCompanyName_HelloWorld</module> <frontName>show_row</frontName> </args> </show_row> </routers> </frontend> </config>
Buat Model:
class MyCompanyName_HelloWorld_Model_MyModel extends Mage_Core_Model_Abstract { protected function _construct() { $this->_init('mymodel/mymodel'); } }
Refresh Cache:
Menggunakan Pertanyaan SQL
Walaupun biasanya tidak disyorkan untuk menggunakan pertanyaan SQL mentah dalam Magento, anda boleh mengakses objek model untuk mendapatkan semula data. Contohnya:
$articles = Mage::getModel('articles/articles')->getCollection(); foreach ($articles as $article) { if ($article->getId() == 10) {
Atas ialah kandungan terperinci Bagaimana untuk Mencipta Modul dan Penghala HelloWorld dalam Magento?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!