<?php
namespace app\chat\controller;
use think\Controller;
use think\Session;
class Login extends Controller
{
public function index()
{
return $this->fetch();
}
public function login()
{
$username = input('username');
$password = input('password');
Session::set('id',$username);
return $this->success('登录成功',url('Index'));
}
}
然后他就到这导致报错http://www.wechat.com/chat/undefined
最佳答案
