ThinkPHP之跨模組呼叫頁面找不到的問題

2022-03-24 05:45:35 字數 694 閱讀 4203

今天在做跨模組的時候,發現始終出問題,頁面找不到,後來發現需要這麼改。

比如a模組呼叫b模組的index方法

<?php

import("

@.action.admin.customeraction

");class transactionaction extends admincommaction

if(!isset($transactionid))

//$this->display("point-of-sale");

}}?>

另乙個模組中

<?

public function index()

$total = $customermodel->where("

enable = 1

")->count();

$page = new page($total,9);

$this->assign("

resultlist

",$resultlist);

$this->assign("

page

",$page->show());

$this->display("

customer/customerman

"); //

這個很重要,否則會找不到頁面

}?>

thinkphp 跨模組呼叫

專案簡介 測試專案名為tp3.0 訪問 localhost tp3.0 安裝環境 windows apache mysql php 模組分組 測試時將模組分為兩組home,admin,根據需求還可以新增更多分組,比如 home,admin,user,article。一 跨模組呼叫例項 簡介 在ind...

thinkphp跨模組呼叫方法

在thinkphp裡面我們如何跨模組呼叫 這裡使用action舉例 如果專案需要的話,還有可能跨分組呼叫,所以有時候需要呼叫其他組的action 我在開發的過程中經常會在當前action中呼叫其他action中的方法,這就涉及到跨action的呼叫,我們還可以了解到a和r兩個快捷鍵方法的使用。舉例a...

thinkphp3 2跨控制器呼叫其他模組的方法

thinphp中前台後台都有互相呼叫方法,這樣可以省去重複內容。1 2 hello new admin common fun hello hello hehe 呼叫其他地方的方法同理。如果是在同控制器裡模組名可以省略。如呼叫common裡面的某個類的方法 1 2 hello new common f...