如何显示图像而不是显示的图像路径名称

时间:2017-10-06 07:18:41

标签: php magento-1.9 custom-post-type

我需要在自定义页面上显示产品详情

代码:

   <console>:30: error: value toLong is not a member of org.apache.spark.sql.ColumnName
         val t = df.select("*").groupBy(dateformat.format($"date".toLong)).agg(count("*").alias("cnt")).select("date","cnt")

如何显示产品图片而不是图片路径。

2 个答案:

答案 0 :(得分:1)

我在代码中看到了您的原始问题,我认为您正在使用Magento 所以你可以这样做

按ID加载产品

Mage::getModel('catalog/product')->load(.....)

或获取所有产品

Mage::getModel('catalog/product')->getCollection() .....

获取产品图片

Mage::helper('catalog/image')->init($_product, 'image') // You can change to another image code

或获取所有媒体图片

$_product->getMediaGalleryImages() // It's array, you need to loop through it to get image detail

显示图片而非网址

<img src="<?php echo $image_url ?>">

慢慢来看看HTML Images

答案 1 :(得分:0)

以下是我的回答:

echo "<img src='".$thumbnail ."'>";

谢谢你@Hung Vo