getProductListJSON需要更多数据

时间:2013-08-09 02:24:45

标签: magento magento-1.7

有一部分代码调用了看起来像这样的getProductListJSON javascript函数

$.getJSON(storeRootUrl + "jsoncatalog/product/list/id/"+id, function(jsonObj) {
    renderProductList(jsonObj,sid);
});

它返回图像,产品名称,描述和ID。

我希望它能像产品类型一样返回更多,如“简单,可配置等”

基于布局:

<jsoncatalog_product_list>
        <reference name="content">  
            <block type="paypal_catalog/json_product_list" output="toHtml" name="product_list"/>
        </reference>
    </jsoncatalog_product_list>

查看app \ code \ community \ Paypal \ Catalog \ Block \ Json \ Product \ List.php(希望我在正确的位置查找),我可以看到以下代码,我假设返回数据。< / p>

public function _toHtml()
    {
        try {
            $array = array();
            $category = Mage::registry('pp_current_category');
            if (!is_null($category)) {
                $array = Mage::helper('paypal_catalog')->getProducts($category->getId());
                $this->setCurrenCategoryKey($category->getId());
            } else {
                $array = array('category' => '', 'items' => array());
            }
            return Mage::helper('core')->jsonEncode($array);
        } catch (Exception $e) {
            Mage::logException($e);
            return false;
        }
    }

我可以在哪里添加我需要的额外字段?

我是在正确的轨道上,还是在查看返回数据的正确模板/ php代码?

请在这里帮助我,我没有完成Magento开发2年,所以我必须重新学习这些东西...

提前致谢。

2 个答案:

答案 0 :(得分:1)

这确实是他输出的地方。但是你需要深入挖掘。看看这一行:

$array = Mage::helper('paypal_catalog')->getProducts($category->getId());

这将填充jsonEncode在输出例程中使用的数组。这可能位于app/code/community/Paypal/Catalog/Helper/的某处。

或者,您可以对$array进行后期处理并添加到您的字段中。但是我强烈反对,因为你可能在帮助方法getProducts内有更好的运气(和性能)。

祝你好运。

答案 1 :(得分:0)

我最终得到了以下代码,这不是最有效的代码,但此移动应用解决方案列表中的产品绝不会超过5个......

添加代码:

$array = Mage::helper('paypal_catalog')->getProducts($category->getId());
$this->setCurrenCategoryKey($category->getId());

并且做到了:

$array = Mage::helper('paypal_catalog')->getProducts($category->getId());
foreach ($array['items'] as &$productitem) {
    $productId = $productitem['id'];
    $product = Mage::getModel('catalog/product')->load($productId);
    if(!is_null($product)){
        $productitem['type'] = $product->getTypeId();
        //Get all options for product
        $options = array();                 
        $options = $product->getOptions();
        if (count($options) > 0){
            $productitem['hasoptions'] = '1';
        }
        else
        {
            $productitem['hasoptions'] = '0';
        }
        $addTocartUrl = $this->helper('checkout/cart')->getAddUrl($product);
        $productitem['addTocartUrl'] = $addTocartUrl;
    }
    else{
        $productitem['type'] = 'simple';
        $productitem['hasoptions'] = '0';       
    }
}
$this->setCurrenCategoryKey($category->getId());

然后我可以使用以下内容更改我的footer.phtml:

<!-- Product List Template -->
<div id="productListTemplate">
    <li onclick="checkQuickAdd(jQuery(this),'%url%');">
        <div class="product-image">%image%</div>
        <div class="product-content">
            <div class="product-title">%title%</div>
            <div class="product-description"><span class="counter" style="font-weight:bold;font-size:large;"></span> %description%</div>
            <div class="product-price">$%price%</div>
            <div class="quickadd"><a href="#" class="quickaddlink">+</a></div>
        </div>
        <div class="product-id" style="display:none;">%id%</div>
        <div class="product-hasoptions" style="display:none">%hasoptions%</div>
    </li>
</div>

允许稍后在js函数中查询值:

function checkQuickAdd(listitem,url)
{
    var hasOptions = jQuery(listitem).find(".product-hasoptions").text();
    var productId = jQuery(listitem).find(".product-id").text();
    var productTitle = jQuery(listitem).find(".product-title").text();
    if (hasOptions == '0'){

            try {
                jQuery(".ui-loader").css("display","block");
                var cartUrl = "/index.php/test/jsoncheckout/cart/add/product/" + productId;
                var cartno = jQuery(jQuery('.ui-page-active .menu-bar-item.itemright>div')[0]).attr('id').replace("cartCount","");
                var cartCount = jQuery(jQuery('.ui-page-active .menu-bar-item.itemright>div')[0]).text();
                jQuery.ajax( {
                    url : cartUrl,
                    type: "POST",
                    dataType : 'json',
                    contentType: "application/json; charset=utf-8",
                    async: true,
                    cache: false,
                    success : function(data) {
                        //alert("added");
                        var counter = 1;
                        var strCounter = jQuery(listitem).find(".counter").text();
                        if (strCounter != "") { counter = parseInt(strCounter) + 1; }
                        if (cartCount != "") { 
                            cartCount = parseInt(cartCount) + 1; 
                        }
                        else {
                            cartCount = 1;
                        }
                        jQuery(listitem).find(".counter").text(counter);

                        // update cart number
                        updateCartCount(cartCount, cartno);
                        jQuery(".ui-loader").css("display","none");        
                        alert("Added " + productTitle);
                    },
                    fail: function (msg) {
                        jQuery(listitem).find(".product-description").text(msg.d);
                        jQuery(".ui-loader").css("display","none");
                    }
                });
                jQuery(".ui-loader").css("display","none");
            } 
            catch (e) {
                alert(e);
                jQuery(".ui-loader").css("display","none");
            }

    }
    else{
        forwardURL(url);
    }
}

这一定是我在很长一段时间内编写的效率最低的代码,但是完成此任务的时间范围非常小。

我希望以更有效的方式做到这一点。

任何建议都将不胜感激!