Day: March 9, 2016

Magento: 获取产品评论 get all reviews with review summary

1. 根据产品id获取该产品评论 $productId = 1234; $product = Mage::getModel('catalog/product')->load($productId); $storeId = Mage::app()->getStore()->getId(); Mage::getModel('review/review')->getEntitySummary($product, $storeId); $ratingSummary = $product->getRatingSummary(); print_r($ratingSummary->getData());… Read More

Android模拟器genymotion的安装和使用

Genymotion概述 Genymotion是一套完整的工具集,旨在为Android提供虚拟环境。开发人员、测试人员、销售人员甚至是游戏玩家都能从中获得众多实用功 能。 它可用于大多数操作系统:Windows、Linux以及MacOS X。它既易于安装,又具备强大的功能:遵循简单的安装流程指引、选择一款Android虚拟设备、启动工具,大功告成! Genymotion特色 最佳Android虚拟效果 OpenGL加速机制带来最佳3D性能 从Google Play安装应用程序 提供全屏选项,改善使用体验 完全可控 同时启动多台虚拟设备 提供多种管理传感器: 电池电量/状态 GPS 加速器 可直接利用Genymotion shel… Read More