Toggle navigation
菜菜小站
菜菜小站
前端开发
前端开发
前端基础
bootstrap
JavaScript
后端开发
后端开发
php开发
laravel
数据库
编辑器
git
服务器
服务器
https
cos云存储
ubuntu
homestead
微信开发
微信开发
微信小程序
python开发
python开发
python基础
关于
laravel+deploy+前端vue打包文件部署(vue分享,去除#号)
作者:
菜菜子
|
时间:2018-10-30 11:32:00 |
分类:
后端开发
,
laravel
|
访问: 2,174 次|
评论:
0 评论
90使用场景: 前端使用vue,后端使用laravel5.5,部署方式使用deploy,因为前端需要使用微信分享,传到后台的url只能取#号之前的,前端需要使用history模式 ### 后端需要做的事 * deploy.php ```php add('shared_dirs', ['/public/wap']); ``` 前端如果打包更新后,前端可以自己将打包后的static目录放到/project/current/public/wap下 * config/filesystems.php 重新定义一个disk ```php 'disks' => [ .... 'wap' => [ 'driver' => 'local', 'root' => public_path('wap'), 'url' => env('APP_URL'), 'visibility' => 'public', ], ], ``` * 路由routes/web.php ``` Route::any('front_wap/{all}', 'Controller@front_wap')->where(['all' => '.*']); ``` https://laravel-china.org/articles/4054/when-using-laravel-to-develop-spa-routing-correct-posture * 控制器方法 ```php public function front_wap() { $files = \Storage::disk('wap')->allFiles(); $manifest_js = ''; $vendor_js = ''; $app_js = ''; $app_css = ''; foreach ($files as $file) { if (starts_with($file, ['static/css/app']) && ends_with($file, ['css'])) { $app_css = $file; } if (starts_with($file, ['static/js/manifest']) && ends_with($file, ['js'])) { $manifest_js = $file; } if (starts_with($file, ['static/js/vendor']) && ends_with($file, ['js'])) { $vendor_js = $file; } if (starts_with($file, ['static/js/app']) && ends_with($file, ['js'])) { $app_js = $file; } } return view('home')->with([ 'app_css' => $app_css, 'manifest_js' => $manifest_js, 'vendor_js' => $vendor_js, 'app_js' => $app_js, ]); } ``` * 模板文件(拿到前端打包后的index.html文件加以改动) ```php
{{config('app.name')}}
``` ### 前端需要做的事 ``` base: '/front_wap', #需要配合后端路由 mode: 'history', ``` ``` build: { ......... // Template for index.html index: path.resolve(__dirname, '../dist/index.html'), // Paths assetsRoot: path.resolve(__dirname, '../dist'), assetsSubDirectory: 'static', assetsPublicPath: '../../wap/',//静态资源引入设置,与静态资源位置相对应 } ``` https://www.jb51.net/article/142831.htm 获取jssdk时:注意前端传到后端的url不要进行encodeURIComponent处理。分享到qq时会有意外收获 ### 访问方式及其效果(不带#号了) ![](https://cos.cc430.cn/2018/10/30/1540870767.png)
标签:
部署
还不快抢沙发
添加新评论
昵称(必填)
邮箱(必填)
网站(选填)
内容(必填)
提交评论
最新文章
ubuntu自动化安装php文件
laravel 操作redis
laravel-admin静态资源加速
laravel-admin1.6版本表单tag bug修复方法
laravel根据另外一列的值赋予grid某一列editable()
laravel-admin数据来源非数据表信息
laravel判定多对多关系是否存在
最新回复
森木志: 对的 用的就是这个版本 我看plugin.php的...
菜菜子: 插件版本呢?应该用https://github.com...
森木志: 忘记说了,typecho版本是1.2.1,php版本是...
森木志: 遇到灵异事件了,设置是没问题的,按道理来说上传成功后的...
局外人: 下载失败了,大佬帮忙看看是什么原因呢?
青丝: 7355763
菜菜子: 我好像沒有做這個提示,方便加微信吧,我看看什麼問題
青丝: 对的,提示需要8.0PHP
菜菜子: 你版本不對吧
菜菜子: 你是typecho1.2?用的是https://git...
标签
前端框架
bootstrap
laravel5
laravel-admin
laravel
微信小程序
gd库
git
wamp配置
https
表单
cos小工具
微信支付
ajax
cos
cos插件
vue
nginx
homestead
linux
ubuntu
swoole
typecho
编辑器
破解
数组
jwt
sql语言
腾讯云
邮件发送
websocket
队列
微信公众号
分页
日志
elasticsearch
wnmp
vagrant
无限极分类
分销
集合
supervisor
部署
grid
redis
python
标签
刷新
加密处理
验证码
悬浮框
权限控制
markdown
shell
mysql
测试
ui
任务调度
定时任务
deployer
gogs
反向代理
ftp
归档
2019年01月
2018年12月
2018年11月
2018年10月
2018年09月
2018年08月
2018年07月
2018年06月
2018年05月
2018年04月
2018年03月
2017年09月
2017年06月
2017年05月
2017年04月
2017年03月
2017年02月
2017年01月
2016年12月
2016年11月
友情链接
空
//