我想使用不同的模版,一套模版叫red,另一套叫read..
<code>public function addData() { $this->theme( 'red' )->display( 'form' ); $this->theme( 'read' )->display( 'addData' ); //这个使用了不同的模版文件, //但是他把不识别,还是从上一句的 red 模版找 addData.html 文件 ... }</code>
我想使用不同的模版,一套模版叫red,另一套叫read..
<code>public function addData() { $this->theme( 'red' )->display( 'form' ); $this->theme( 'read' )->display( 'addData' ); //这个使用了不同的模版文件, //但是他把不识别,还是从上一句的 red 模版找 addData.html 文件 ... }</code>
這到沒用過。其實你display裡面的內容直接用拼接的不就好了。 $this->display(資料夾+檔),這樣子來渲染的話,你模板一樣資料夾不一樣,應該能解決問題。
用ajax 非同步呼叫 將兩個模板 拼成一個即可
<code>public function addData() { $result = []; $result['red']= $this->fetch('Member:red'); $result['read']= $this->fetch('Member:read'); return $this->ajaxReturn($result); }</code>