10

我正在尝试创建对自定义控制器的 ajax 调用。

我一直在关注:http: //www.atwix.com/magento/ajax-requests-in-magento/ - 它提供了一个如何创建的简短示例。

所以我有以下文件:

app/etc/moudles/BM_Sidebar.xml

<?xml version="1.0"?>
<config>
  <modules>
    <BM_Sidebar>
        <active>true</active>
        <codePool>local</codePool>
    </BM_Sidebar>
  </modules>
</config>

app/code/local/BM/Sidebar/controllers/IndexController.php

class BM_Sidebar_IndexController extends Mage_Core_Controller_Front_Action {

    public function indexAction() {
        echo "test data";
    }
}

app/code/local/BM/Sidebar/controllers/etc/config.xml

<?xml version="1.0"?>
<config>
  <modules>
    <BM_Sidebar>
      <version>0.1.0</version>
    </BM_Sidebar>
  </modules>
  <frontend>
    <routers>
      <sidebar>
        <use>standard</use>
        <args>
          <module>BM_Sidebar</module>
          <frontName>carfilter</frontName>
        </args>
      </sidebar>
    </routers>
    <layout>
      <updates>
        <sidebar>
          <file>sidebar.xml</file>
        </sidebar>
      </updates>
    </layout>
  </frontend>
</config>

我正在努力弄清楚我需要投入什么sidebar.xml

我需要创建一个块类吗?

谢谢

4

2 回答 2

16

如何进行 AJAX

  1. 它总是从 config.xml 开始:

    1. frontName声明你的路由器:使用与标签内容相同的路由器名称

      <frontend>
          <routers>
              <carfilter>
                  <use>standard</use>
                  <args>
                      <module>BM_Sidebar</module>
                      <frontName>carfilter</frontName>
                  </args>
              </carfilter>
          </routers>
      </frontend>
      
    2. 声明你的布局文件(你做到了)

  2. 在您的布局文件中,您需要 2 个句柄:1 个用于初始化状态,一个用于 ajax。句柄与您正在使用的 url 匹配:

    <layout version="0.1.0">
        <carfilter_ajax_index>
            <reference name="head">
                <action method="addItem"><type>skin_js</type><name>js/carfilter.js</name></action>
            </reference>
            <reference name="content">
                <block type="core/template" name="carfilter" as="carfilter" template="carfilter/init.phtml" />
            </reference>
        </carfilter_ajax_index>
    
        <carfilter_ajax_ajax>
            <remove name="right"/>
            <remove name="left"/>
            <block type="core/template" name="carfilter_ajax" as="carfilter_ajax" template="carfilter/ajax.phtml" output="toHtml" />
        </carfilter_ajax_ajax>
    </layout>
    

    注意:注意outputAJAX 调用的块声明中的属性

  3. 创建您的 phtml 文件(您在布局文件中声明的文件):

    1. init.phtml:创建将使用 AJAX 的结果更新的 div 并启动 javascript 对象

      first state
      <div id="div-to-update"></div>
      <script type="text/javascript">
      //<![CDATA[
          new Carfilter('<?php echo $this->getUrl('carfilter/ajax/ajax') ?>', 'div-to-update');
      //]]>
      </script>
      
    2. ajax.phtml:要使用 AJAX 显示的 html

      var Carfilter = Class.create();
      Carfilter.prototype = {
          initialize: function(ajaxCallUrl, divToUpdate) {
              this.url = ajaxCallUrl;
              this.div = divToUpdate;
              this.makeAjaxCall();
          },
      
          makeAjaxCall: function() {
              new Ajax.Request(this.url, {
                  onSuccess: function(transport) {
                      var response = transport.responseText.evalJSON();
                      $(this.div).update(response.outputHtml);
                  }.bind(this)
              });
          }
      };
      
  4. 控制器:本例中的 2 个动作,页面加载时的索引,以及 ajax:

    <?php
    
    class BM_Sidebar_AjaxController extends Mage_Core_Controller_Front_Action
    {
    
        public function indexAction()
        {
            $this->loadLayout();
            $this->_initLayoutMessages('customer/session');
            $this->getLayout()->getBlock('head')->setTitle($this->__('Page title'));
            $this->renderLayout();
        }
    
        public function ajaxAction()
        {
            $isAjax = Mage::app()->getRequest()->isAjax();
            if ($isAjax) {
                $layout = $this->getLayout();
                $update = $layout->getUpdate();
                $update->load('carfilter_ajax_ajax'); //load the layout you defined in layout xml file
                $layout->generateXml();
                $layout->generateBlocks();
                $output = $layout->getOutput();
                $this->getResponse()->setHeader('Content-type', 'application/json');
                $this->getResponse()->setBody(Mage::helper('core')->jsonEncode(array('outputHtml' => $output)));
            }
        }
    
    }
    

为了回答您的问题,您不一定需要创建自己的块(在我的示例中我没有),但您可能希望将模板文件中所需的功能放在方便的地方

于 2013-10-16T07:32:51.500 回答
-3

您需要在模板布局目录中创建文件 sidebar.xml。这将指向您的控制器。我不能在这里分享整个文件结构。但可以从您可以下载/创建自定义模块的地方分享一个赞。

http://www.webspeaks.in/2010/08/create-your-first-adminbackend-module.html

希望对您有所帮助!

于 2013-10-15T14:21:13.160 回答