> 백엔드 개발 > PHP 튜토리얼 > ecmall action跳转有关问题

ecmall action跳转有关问题

WBOY
풀어 주다: 2016-06-13 13:05:06
원래의
1112명이 탐색했습니다.

ecmall action跳转问题
假如我有这么一个跳转 : index.php?app=goods&act=drop

他从 index.php -> ECMall 的 startup方法 -> 这时会请求 GoodsApp 这个类中的 do_action 方法, 因为这个类中没有, 所以去找父类, 然后一个一个父亲往上找 -> 直到找到 ECBaseApp 才出现第一个 do_action 方法, 但是他又 parent::do_action($action); -> 所以我又跑到 BaseApp 找, 总算不跳了, 但是$this->_run_action(); 也让我傻眼:

    function _run_action()
    {
    
        $action = $this->_curr_action;
        $this->$action();
    }
我输出了这里的 $action, 的确是 drop, 但是这个类中并没有 drop(), 而且父类里面也没有 drop, 程序这时又跳到哪里去了呢? 这时难道往下(子类)跳了吗? 太奇怪了! 请PHP/ECMALL高手指点, 刚刚接触 php 不久,很困惑, 非常感谢你的帮助
------最佳解决方案--------------------

<br />
/* 店铺分类 */<br />
    function store()<br />
    {<br />
        /* 取得导航 */<br />
        $this->assign('navs', $this->_get_navs());<br />
        /* 取得商品分类 */<br />
        $scategorys = $this->_list_scategory();<br />
        /* 取得最新店铺 */<br />
        $new_stores = $this->_new_stores(5);<br />
        /* 取得推荐店铺 */<br />
        $recommended_stores = $this->_recommended_stores(5);<br />
        /* 当前位置 */<br />
        $_curlocal=array(<br />
            array(<br />
                'text'  => Lang::get('index'),<br />
                'url'   => 'index.php',<br />
            ),<br />
            array(<br />
                'text'  => Lang::get('scategory'),<br />
                'url'   => '',<br />
            ),<br />
        );<br />
        $this->assign('_curlocal',$_curlocal);<br />
        $this->assign('new_stores', $new_stores);<br />
        $this->assign('recommended_stores', $recommended_stores);<br />
        $this->assign('scategorys', $scategorys);<br />
<br />
        $this->assign('page_title', Lang::get('store_category') . ' - '. Conf::get('site_title'));<br />
        $this->display('category.store.html');<br />
로그인 후 복사

在drop()中也有类似的$this->assign('goods_list', $var);
类似于smarty的使用方式
------其他解决方案--------------------
没人2次开发 ecmall 吗? 顶一下

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿