0

カテゴリ ID を指定すると、(magento から) 製品の評価を取得したいと思います。結果は JSON 形式にする必要があります。ブラウザー ページで 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));」の行を追加するように指示されています。出口();' 必要な機能で。しかし、評価を取得するためにさまざまな方法で URL を試してみましたが、役に立ちませんでした... ファイルは次のとおりです。

評価.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 が見つかりませんでした..これにはビュー ファイルを作成する必要がありますか?

誰でもこれについて私を助けることができます...これにエラーがある場合は、それらに言及してください..

前もって感謝します

4

1 に答える 1

0

クラス名を次のように変更します。 class Mynamespace_Appname_Model_Rating

ファイル パスも大文字と小文字が一致していることを確認してください (例: myname と Myname)。

于 2013-02-19T20:31:33.547 に答える