如何使用 php 函数将简单产品添加到 Magento 中?
如何使用 php 函数将产品添加到 Magento 中?我用过API,但是速度很慢。我必须导入大约 100.000 条记录并每天晚上检查库存。
How have I to add a product into Magento using a php function? I have used the API but it is very slow. I have to import about 100.000 records and check the stock everynight.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以编程方式添加产品很容易。您首先创建一个空白模型
,然后填写...
...等等您想要的属性。 (此处的值仅作为示例。)请记住包含所有必需的属性,例如描述、价格、税级、可见性等。
最后将其添加到数据库中。
您是否尝试过使用导入/导出配置文件< /a>?
Programmatically adding a product is easy. You start with creating a blank model
Then fill it in...
...and so on for the attributes you want. (Values here are examples only.) Remember to include all required attributes like description, price, tax class, visibility, etc.
Finally add it to the database.
Have you tried using the import/export profiles?