当我提供类别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))行;出口();'在所需的功能。但我尝试了很多方法来获得收视率,但没有用......文件如下:
Rating.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);
}
}
app / code / local / Mynamespace / Appname / etc / cnfig.xml中的config.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来运行模型文件.. 我是否需要为此创建一个视图文件???
任何人都可以帮助我...如果有任何错误,请提及..
提前致谢
答案 0 :(得分:0)
将您的班级名称更改为:class Mynamespace_Appname_Model_Rating
确保您的文件路径也匹配案例(即myname vs Myname)