问题:在自定义模块中获取产品 URL:Magento

发布于 2024-09-30 06:13:21 字数 417 浏览 2 评论 0原文

我在 magento 中创建了一个自定义模块,并希望以 URL 作为链接来显示产品。

我正在尝试这种方式:-

 for ($counter=0; $counter < count($products); $counter++)
{  
 $_product =    Mage::getModel('catalog/product')->loadByAttribute('id',$products[$counter]->product_id);
  echo $_product->getProductUrl();
}

但是 $_product->getProductUrl() 函数总是返回一个与加载的产品无关的 url。

你们能检查一下并让我知道我缺少什么吗?

谢谢。

I have created a custom module in magento and wants to show products with their URL as links.

I am trying in this way :-

 for ($counter=0; $counter < count($products); $counter++)
{  
 $_product =    Mage::getModel('catalog/product')->loadByAttribute('id',$products[$counter]->product_id);
  echo $_product->getProductUrl();
}

but the $_product->getProductUrl() function always return a url which is not related to none of the loaded products.

Can you guys inspect it and let me know what I am missing?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橪书 2024-10-07 06:13:21

您正在使用 loadByAttribute('id', ...),但标识产品(以及大多数其他实体)的属性是 entity_id。更短、更安全的方法就是 load(...)。一个更短的方法是这样的:

echo Mage::helper('catalog/product')->getProductUrl($products[$counter]->product_id);

You are using loadByAttribute('id', ...) but the attribute that identifies a product (and most other entities) is entity_id. A shorter, safer method is just load(...). An even shorter method is this:

echo Mage::helper('catalog/product')->getProductUrl($products[$counter]->product_id);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文