这是第一个控制器
1。控制器A
func main() {
log.Println("started")
http.HandleFunc("/upload", upload)
log.Fatal(http.ListenAndServe(":8080", nil))
}
func upload(w http.ResponseWriter, r *http.Request) {
if r.Method == "GET" {
t, _ := template.ParseFiles("upload.html")
t.Execute(w, nil)
}
这是第二个控制器
2。控制器B
class A extends CI_Controller {
public function __construct()
{
parent::__construct();
}
function custom_a()
{
}
}
与CI2配合正常,但在迁移到Ci3后会抛出异常错误
遇到未捕获的异常类型:错误消息:类 找不到“ CI_Mongo_Db”文件名:public_html / system / core / Common.php 行号:196
我正在将MongoDB用作带有CI3的数据库。