久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

    <bdo id='ABBKS'></bdo><ul id='ABBKS'></ul>

<small id='ABBKS'></small><noframes id='ABBKS'>

  • <i id='ABBKS'><tr id='ABBKS'><dt id='ABBKS'><q id='ABBKS'><span id='ABBKS'><b id='ABBKS'><form id='ABBKS'><ins id='ABBKS'></ins><ul id='ABBKS'></ul><sub id='ABBKS'></sub></form><legend id='ABBKS'></legend><bdo id='ABBKS'><pre id='ABBKS'><center id='ABBKS'></center></pre></bdo></b><th id='ABBKS'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='ABBKS'><tfoot id='ABBKS'></tfoot><dl id='ABBKS'><fieldset id='ABBKS'></fieldset></dl></div>

        <tfoot id='ABBKS'></tfoot>

      1. <legend id='ABBKS'><style id='ABBKS'><dir id='ABBKS'><q id='ABBKS'></q></dir></style></legend>
      2. Zend 框架,$this->_forward 在做什么

        Zend Framework, what $this-gt;_forward is doing(Zend 框架,$this-_forward 在做什么)

            • <tfoot id='KrzJo'></tfoot>

                  <bdo id='KrzJo'></bdo><ul id='KrzJo'></ul>

                  <small id='KrzJo'></small><noframes id='KrzJo'>

                    <tbody id='KrzJo'></tbody>
                  <legend id='KrzJo'><style id='KrzJo'><dir id='KrzJo'><q id='KrzJo'></q></dir></style></legend>

                  <i id='KrzJo'><tr id='KrzJo'><dt id='KrzJo'><q id='KrzJo'><span id='KrzJo'><b id='KrzJo'><form id='KrzJo'><ins id='KrzJo'></ins><ul id='KrzJo'></ul><sub id='KrzJo'></sub></form><legend id='KrzJo'></legend><bdo id='KrzJo'><pre id='KrzJo'><center id='KrzJo'></center></pre></bdo></b><th id='KrzJo'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='KrzJo'><tfoot id='KrzJo'></tfoot><dl id='KrzJo'><fieldset id='KrzJo'></fieldset></dl></div>
                • 本文介紹了Zend 框架,$this->_forward 在做什么的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我希望有人向我解釋 _forward 到底在做什么,我看不到 _forward 是否也在將附加視圖渲染到操作或只是執行操作.

                  I would like someone to explain me what _forward is exactly doing, I cannot see if _forward is also rendering the attached view to the action or just executing the action.

                  還可以在視圖腳本中將參數傳遞給 $this->action 嗎?

                  Also is it possible to pass argument to $this->action in a view script ?

                  更一般地說,我的問題是如何編寫確認頁面,假設用戶輸入了一些東西并且您想向他顯示確認,對于這種情況是向前的嗎?

                  More generally my problem is how to code a confirmation page, let's say the user input some stuff and you want to show him confirmation, is forward is mean for that case ?

                  推薦答案

                  _forward 是內部重定向._redirect 發送的標頭告訴客戶端的瀏覽器轉到某個其他 URL,而 _forward 則告訴 Dispatcher 在內部將請求重定向到其他地方.

                  _forward is an internal redirect. Where as _redirect sends a header that tells the client's browser to go to some other URL, _forward tells the Dispatcher to internally redirect the request somewhere else.

                  如果考慮正常的發貨順序:

                  If you consider the normal dispatch order of:

                   preDispatch()
                   someAction()
                   postDispatch()
                  

                  在該進程中的任何一點調用 _forward 都會導致以下步驟無法執行.因此,如果您在 preDispatch() 中調用 _forward,則不會調用 someAction() 等等.如果您在 someAction() 中使用 _forward() 并且您正在使用 viewRenderer 操作助手來呈現您的視圖(您讓框架選擇要呈現的視圖腳本),那么在 someAction() 中將不會呈現任何視圖腳本.

                  Calling _forward at any point in that progression will cause the following steps to not be executed. So if you call _forward in preDispatch(), someAction() will not be called and so on. If you _forward() in someAction() and you are using the viewRenderer action helper to render your views (you are letting the framework choose what view script to render), then no view script will be rendered in someAction().

                  當請求被轉發到新的控制器/模塊時,整個調度過程將在那里重復.

                  When the request is forwarded to the new Controller / Module the entire dispatch process will be repeated there.

                  您可以使用以下方法找出正在調度的操作:

                  You can find out what action is being dispatched by using:

                   $action = $this->getRequest()->getParam('action');
                  

                  $action 將是動作的 url 形式,因此如果方法名稱為someKindOfAction",則 $action 將包含some-kind-of".您也可以對控制器和模塊執行此操作.

                  $action will be the url form of the action so if the method is name 'someKindOfAction', $action will contain 'some-kind-of'. You can do this as well for controllers and modules.

                  這篇關于Zend 框架,$this->_forward 在做什么的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網!

                  【網站聲明】本站部分內容來源于互聯網,旨在幫助大家更快的解決問題,如果有圖片或者內容侵犯了您的權益,請聯系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  Deadlock exception code for PHP, MySQL PDOException?(PHP、MySQL PDOException 的死鎖異常代碼?)
                  PHP PDO MySQL scrollable cursor doesn#39;t work(PHP PDO MySQL 可滾動游標不起作用)
                  PHP PDO ODBC connection(PHP PDO ODBC 連接)
                  Using PDO::FETCH_CLASS with Magic Methods(使用 PDO::FETCH_CLASS 和魔術方法)
                  php pdo get only one value from mysql; value that equals to variable(php pdo 只從 mysql 獲取一個值;等于變量的值)
                  MSSQL PDO could not find driver(MSSQL PDO 找不到驅動程序)

                • <tfoot id='9Ncy9'></tfoot>
                • <i id='9Ncy9'><tr id='9Ncy9'><dt id='9Ncy9'><q id='9Ncy9'><span id='9Ncy9'><b id='9Ncy9'><form id='9Ncy9'><ins id='9Ncy9'></ins><ul id='9Ncy9'></ul><sub id='9Ncy9'></sub></form><legend id='9Ncy9'></legend><bdo id='9Ncy9'><pre id='9Ncy9'><center id='9Ncy9'></center></pre></bdo></b><th id='9Ncy9'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='9Ncy9'><tfoot id='9Ncy9'></tfoot><dl id='9Ncy9'><fieldset id='9Ncy9'></fieldset></dl></div>

                  <small id='9Ncy9'></small><noframes id='9Ncy9'>

                          <legend id='9Ncy9'><style id='9Ncy9'><dir id='9Ncy9'><q id='9Ncy9'></q></dir></style></legend>

                          • <bdo id='9Ncy9'></bdo><ul id='9Ncy9'></ul>
                              <tbody id='9Ncy9'></tbody>
                          • 主站蜘蛛池模板: 美女视频一区 | 综合五月婷 | 天天视频成人 | 亚洲成人av在线播放 | 91国产视频在线观看 | 亚洲午夜视频在线观看 | 一级大片网站 | 伊人影院99 | 成人欧美一区二区三区 | 又爽又黄axxx片免费观看 | 91成人在线视频 | 亚洲性人人天天夜夜摸 | 亚洲日韩欧美一区二区在线 | 在线国产一区 | 日韩中文久久 | 亚洲第一在线 | 日韩a在线观看 | 蜜臀久久99精品久久久久野外 | 亚洲最色网站 | 亚洲日韩中文字幕一区 | 一区二区三区四区在线 | 亚洲精品国产精品国自产在线 | 在线午夜 | 久久久久国产 | 日韩精品免费视频 | 欧美一二三区 | 国产第一页在线播放 | 成人精品久久 | 亚洲狠狠丁香婷婷综合久久久 | 欧美亚洲一区二区三区 | 在线亚州 | 欧美一区视频 | 一区二区三区高清 | 婷婷久久综合 | 日韩中文字幕在线视频观看 | 玖玖国产| 狠狠操狠狠干 | 久久99视频这里只有精品 | 天天操天天射综合网 | 自拍视频网站 | 国产精品久久久久av |