token超时
来源:1-1 导学
七只熊
2021-12-29
通过 https://api.imooc-admin.lgdsunday.club/api/sys/login 接口获取token之后
请求 https://api.imooc-admin.lgdsunday.club/api/sys/profile 接口 返回token超时
5回答
-
Sunday
2021-12-29
你好
这个问题是因为 vue-router 中对 layout 组件的处理问题。
layout 的组件加载不应该使用懒加载的形式
042021-12-29 -
七只熊
提问者
2021-12-29
打包放到线上 出现这个错误。00 -
七只熊
提问者
2021-12-29
打包放到线上 出现这个错误。00 -
Sunday
2021-12-29
如果想要打包上线,那么主要需要处理的就是 nginx 的配置问题,我这边贴一下我的配置,你可以作为一个参考
server {
#SSL 访问端口号为 443
listen 443 ssl;
#填写绑定证书的域名
server_name imooc-admin.lgdsunday.club;
#证书文件名称
ssl_certificate 1_imooc-admin.lgdsunday.club_bundle.crt;
#私钥文件名称
ssl_certificate_key 2_imooc-admin.lgdsunday.club.key;
ssl_session_timeout 5m;
#请按照以下协议配置
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
#请按照以下套件配置,配置加密套件,写法遵循 openssl 标准。
ssl_ciphers ECDHE-RSA-AES128-GCM-SHA256:HIGH:!aNULL:!MD5:!RC4:!DHE;
ssl_prefer_server_ciphers on;
root /sunday/imooc/admin/dist/;
#charset koi8-r;
access_log logs/host.access.log main;
location / {
# index index.html index.htm;
try_files $uri $uri/ /index.html;
}
# 反向代理,解决跨域问题(单独代理请求到服务端)
location /prod-api/ {
proxy_pass http://39.105.131.75:3004/api/;
# $host 变量,Host 为变量名
proxy_set_header Host $host; #域名转发
proxy_set_header X-Real-IP $remote_addr; #IP转发
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Cookie $http_cookie; # cookie 配置
}
}
00 -
Sunday
2021-12-29
你好
你是自己部署了服务端吗?我观察你的服务端请求,发现你并没有携带 cookie
032021-12-29
相似问题