当我给出类别 ID 并且结果应该是 JSON 格式时,我想获得产品的评级(来自 magento)。我想在浏览器页面中获取 JSON 数据。为此,我扩展了位于 app/code/core/mage/Rating/Model/Rating.php 的 Rating.php
根据inchoo网站,我刚刚将模型文件复制并粘贴到app/code/local/mynamespace/appname/Model/Rating.php。我在 app/code/local/mynamespace/appname/etc/config.xml 中创建了一个 config.xml 文件,还在 app/etc/modules 中创建了一个 xml。
在他们告诉他们添加'var_dump(get_class($this))行的站点中;出口();' 在所需的功能。但是我尝试了很多方法来获取评分,但是没有用......文件如下:
评级.php
<?php
class mnamespace_appname_Model_Rating extends Mage_Core_Model_Abstract
{
/**
* rating entity codes
*
*/
const ENTITY_PRODUCT_CODE = 'product';
const ENTITY_PRODUCT_REVIEW_CODE = 'product_review';
const ENTITY_REVIEW_CODE = 'review';
/**
* Define resource model
*
* @return void
*/
protected function _construct()
{
$this->_init('rating/rating');
}
public function addOptionVote($optionId, $entityPkValue)
{
Mage::getModel('rating/rating_option')->setOptionId($optionId)
->setRatingId($this->getId())
->setReviewId($this->getReviewId())
->setEntityPkValue($entityPkValue)
->addVote();
return $this;
}
public function updateOptionVote($optionId)
{
Mage::getModel('rating/rating_option')->setOptionId($optionId)
->setVoteId($this->getVoteId())
->setReviewId($this->getReviewId())
->setDoUpdate(1)
->addVote();
return $this;
}
/**
* retrieve rating options
*
* @return array
*/
public function getOptions()
{
if ($options = $this->getData('options')) {
return $options;
}
elseif ($id = $this->getId()) {
return Mage::getResourceModel('rating/rating_option_collection')
->addRatingFilter($id)
->setPositionOrder()
->load()
->getItems();
}
return array();
}
public function getEntitySummary($entityPkValue, $onlyForCurrentStore = true)
{
$this->setEntityPkValue($entityPkValue);
return $this->_getResource()->getEntitySummary($this, $onlyForCurrentStore);
}
public function getReviewSummary($reviewId, $onlyForCurrentStore = true)
{
$this->setReviewId($reviewId);
return json_encode($this->_getResource()->getReviewSummary($this, $onlyForCurrentStore));
var_dump(get_class($this)); //these are the lines added specially
exit(); //these two lines(upline also)
}
/**
* Get rating entity type id by code
*
* @param string $entityCode
* @return int
*/
public function getEntityIdByCode($entityCode)
{
return $this->getResource()->getEntityIdByCode($entityCode);
}
}
config.xml 文件位于 app/code/local/Mynamespace/Appname/etc/cnfig.xml
<?xml version="1.0"?>
<config>
<modules>
<Mynamespace_Appname>
<version>0.1</version>
</Mynamespace_Appname>
</modules>
<global>
<models>
<Appname>
<rewrite>
<item>Mynamespace_Appname_Model_Rating</item>
</rewrite>
</Appname>
</models>
</global>
</config>
app/etc/modules/Mynamespace_Appname.xml 中的文件
<?xml version="1.0"?>
<config>
<modules>
<Mynamespace_Appname>
<active>true</active>
<codePool>local</codePool>
</Mynamespace_Appname>
</modules>
</config>
在管理面板中它显示模块已激活..但我没有找到正确的 url 来运行模型文件..我需要为此创建一个视图文件吗???
谁能帮我解决这个问题...如果有任何错误,请提及..
提前致谢