TP5.1函数调用的总是提示调用未定义的方法

发布于 2022-09-11 20:23:59 字数 1880 浏览 20 评论 0

 public function asd_gets(){
        $session_name =  Session::get('name');
        $session_username = Session::get('username');
        return $session_username;
    }

 public function login()
    {
        
        if (request()->isPost()) {
            $name = Request::instance()->post('name');
            $pwd  = Request::instance()->post('pwd');

            $res = Db::table('usertable')->where('user', $name)->find();
            if ($res) {
                if ($res['pwd'] == $pwd && $res['user'] == $name) {
                    //开启session
                    $username = $res['username'];
                    $session_name =  Session::set('name', $name);
                    $session_username = Session::set('username',$username);
                    asd_gets();
                    return $this->success('登录成功', 'http://leisureshop.cn/index.php/index/index/tindex', -1, 2);
                } else {
                    return $this->error('用户或密码错误不存在', "http://leisureshop.cn/index.php/index/login/login", -1, 2);
                }
            } else {
                return $this->error('用户不存在', "http://leisureshop.cn/index.php/index/login/login");
            }
        }
        return $this->fetch();
    }

上面是控制器 index.php
下面是控制器 goods.php

<?php
namespace app\index\controller;

use think\Controller;
use thinK\Db;
use think\Request;


class Goods extends Controller
{
    public function gouwuche()
    {
        $test = Controller('index/Index');
        echo $test->asd_gets();
        return; 
    }
}

然后我在goods.php这个控制器上调用控制器index.php想通过asd_gets()方法把当前登录的session传到goods.php这个控制器上。但是运行到
asd_gets();就报错 调用未定义的函数appindexcontrollersessionu gets()。
请问如果我想调用的asd_gets()应该怎么办。
图片描述

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小鸟爱天空丶 2022-09-18 20:23:59

用 $this-> 指向你自己的函数就可以了。
来自CSDN https://blog.csdn.net/weixin_...

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文