Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
产品添加页面非常大..谁能帮我在管理端创建单个产品添加页面...
您可以使用 magento 开发文档来完成这项工作。例子:
使用 php 代码获取产品:
$product = Mage::getModel('catalog/product'); print_r($product);
您可以通过 php 代码插入/更新/删除产品。
magento phpdoc