所有文章 第9页

laveral

laravel连接oracle

lxfamn 发布于 2022-11-01

这里的前提是OCI驱动已经可以连接oracle了 具体配置可以参见http://lxfamn.cn/blog/?p=3081 $conn = oci_connect('scott', 'tiger', '10.100.21.112...

阅读(396)评论(0)赞 (0)

gitlab

git 切换分支

lxfamn 发布于 2022-10-24

1、修改本地分支名称 git branch -m oldBranchName newBranchName 2、将本地分支的远程分支删除 git push origin :oldBranchName 3、将改名后的本地分支推送到远程,并将本地分支与之关联 git push --se...

阅读(346)评论(0)赞 (0)

YOthers

gitlab配置邮箱

lxfamn 发布于 2021-08-25

首先应启用postfix systemctl status postfix systemctl start postfix 需要修改的配置文件 /etc/gitlab/gitlab.rb 可以根据自己实际安装目录进行寻找,或使用find name gitlab.rb 查找所在目录...

阅读(406)评论(0)赞 (0)

bat

RunHiddenConsole.exe php windows环境下后台运行

lxfamn 发布于 2022-10-18

RunHiddenConsole是WIN10系统中可用的命令行程序,能够隐藏控制台界面,用来挂Tomcat、Php、Nginx很不错,记得把RunHiddenConsole.exe的路径放进环境变量里面。。 https://redmine.lighttpd.net/attachm...

阅读(366)评论(0)赞 (0)

YOthers

windows nginx配置laravel

lxfamn 发布于 2022-10-18

location / 配置可以解决无法访问静态资源的问题 listen 9089; server_name localhost; root html/srmh5/public; index index.html index.htm index.php; #charset koi8...

阅读(358)评论(0)赞 (0)

laveral

WNMP搭建

lxfamn 发布于 2022-10-18

因需求需要搭建一套WINDOWSSERVER+NGINX+MARIADB+PHP 1、nginx 去到Nginx官网:http://nginx.org/ ,然后点击“download” 在下载界面选择自己想要下载的版本,点击对应版本,下载Nginx。 选择的稳定版 先把我们的ng...

阅读(383)评论(0)赞 (0)

html

色卡

lxfamn 发布于 2022-09-23

http://tools.jb51.net/static/colorpicker/ 转载请注明出处: 转载自http://lxfamn.cn/blog

阅读(604)评论(0)赞 (0)

Vue

vue 刷新组件方法

lxfamn 发布于 2022-09-23

第一种方法:v-if控制组件,先设false,再true强制刷新组件 this.fresh = false this.$nextTick(() => { this.fresh = true }) 第二种方法:使用组件内置$forceUpdate方法,使用前需要在配置中启用 ...

阅读(336)评论(0)赞 (0)

javascript

js new Date()

lxfamn 发布于 2022-09-23

、var myDate = new Date(); Date() 返回当日的日期和时间。 getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。 getDay() 从 Date 对象返回一周中的某一天 (0 ~ 6)。 getMonth() 从 Date ...

阅读(359)评论(0)赞 (0)

Vue

echarts tooltip

lxfamn 发布于 2022-09-23

tooltip: { show: true, // 是否显示提示框组件 trigger: 'axis', // 触发类型('item',数据项图形触发,主要在散点图,饼图等无类目轴的图表中使用;'axis',坐标轴触发,...

阅读(306)评论(0)赞 (0)

Vue

vite跨域配置

lxfamn 发布于 2022-09-22

最重要的是axio请求默认本地路径,nginx配置代理 devServer: { port: port, open: false, overlay: { warnings: false, errors: true }, proxy: { target: http://localh...

阅读(397)评论(0)赞 (0)

springboot

goview 低代码部署【1】

lxfamn 发布于 2022-09-21

部署一个goview https://gitee.com/dromara/go-view 觉着还不错 分纯前端和带后端的,懒得动了,用了带后端的 marter-fetch分支 下载前端文件,按文档安装 下载后端文件,IDEA跑起。 下面记录一下调整的部分 后端 当时下载的巨坑,前...

阅读(572)评论(0)赞 (0)