Ajaxify를 사용하여 AJAX를 사용하여 카테고리 목록 페이지에서 제품보기 블록을로드하려고합니다 . 옵션 상자 (자식 HTML "container1")가 올바르게로드되지 않은 유일한 문제는 모든 것이 잘 작동한다는 것입니다. 옵션이 표시되지 않습니다.
누구든지 이것에 경험이 있습니까, 아마도 이런 것을 시도해 보셨습니까? 사용하여 컨트롤러에서 활성 제품을 설정했습니다.
$productId = (int) $this->getRequest()->getParam('product_id');
Mage::helper('catalog/product')->initProduct($productId, $this);
레이아웃을 렌더링하기 전에
옵션이 catalog.xml의 다른 부분에있는 뷰에 추가된다는 사실과 관련이 있다고 생각합니다.
[...]
<PRODUCT_TYPE_configurable translate="label" module="catalog">
<label>Catalog Product View (Configurable)</label>
<reference name="product.info">
<block type="catalog/product_view_type_configurable" name="product.info.configurable" as="product_type_data" template="catalog/product/view/type/default.phtml">
<block type="core/text_list" name="product.info.configurable.extra" as="product_type_data_extra" translate="label">
<label>Product Extra Info</label>
</block>
</block>
</reference>
<reference name="product.info.options.wrapper">
<block type="catalog/product_view_type_configurable" name="product.info.options.configurable" as="options_configurable" before="-" template="catalog/product/view/type/options/configurable.phtml"/>
</reference>
</PRODUCT_TYPE_configurable>
[...]
그러나 정확한 문제가 무엇인지 잘 모르겠습니다.
누군가가 올바른 방향으로 나를 가리킬 수 있기를 바랍니다.
감사합니다. Sander Mangel