Magento 在 cronjob 中存储 id
使用 cronjob 执行模型时,有没有办法将商店 id 作为参数?
Is there a way to give a store id as parameter when executing a model with cronjob ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您无法指定 Magento Cron Job 的存储范围,但您可以添加可在其中使用的其他参数。
指定您可以通过 cron 方法处理的其他节点:
<预><代码>;
* * * * * *
<工作>
<工作名称>
<时间表>
<运行>
<模型>模块/观察者::myJob
<商店>商店代码
以及使用当前作业代码接收调度对象的方法:
所有与商店相关的模型只能加载特定商店的数据,所以我希望它能解决您的问题。
You cannot specify store scope for Magento Cron Job, but you can add additional arguments that you can use inside of it.
Specify additional node that you can process via your cron method:
And method where you receiving the schedule object with current job code:
All the store related models can load data only for a particular store, so I hope it solves your problem.