JamesYuCN
JamesYuCN
行业: 传统行业 功能期望: 数据库表、字段可以支持驼峰命名(并大小写不敏感)、支持非确定字符集的 = like 查询(也就是英文可以大小写不敏感查询) 解决什么问题: 方便迁移Sql Server,My Sql的数据库,数据库驼峰命名比较好看、也方便和业务系统的模型对应。 期望功能分级: 有就一定用
windows 部署 2.2bate1 也有类似问题
鼠标移动到代码区域,鼠标放上去,代码区右上角会有”复制“按钮,点击即可复制。 但是,最新版因为css的问题,这个样式经常丢失(被覆盖),所以看不到,可以尝试按ctrl+F5 刷新。 (刷新后再点击左侧目录树样式又会丢失)
>   使用最新master分支,cherry和普通markdown编辑器复制功能都是可用的 @JamesYuCN 被覆盖是啥情况,可以截图一下? 原图,可以复制:  点击目录,样式就变了 
因为显示不对,我自己改了下面两个文件,但是也还是出现上面的问题, 等我有空了用最新版本试试,之前应该是 2.2bate1 
> 有改过什么配置么,我这里没改过配置,不复现这个问题 应该是和这个一样的问题: https://github.com/mindoc-org/mindoc/issues/902
windows 部署也有类似问题,很怪异
I see the following message and hopefully the patch will come in time to merge into PG18 With the last commitfest underway:https://commitfest.postgresql.org/52/ the release team has decided that the feature...
不懂go语言,自己随便改了一下, 调整顺序时只更新数据库,不去修改更新时间,勉强可以用: 在 models/DocumentModel.go 添加了一个函数 `` // 更新排序 20241208 james func (item *Document) UpateOrder(id int,OrderSort int,ParentId int) { o := orm.NewOrm() o.QueryTable(item.TableNameWithPrefix()).Filter("document_id", id).Update(orm.Params{ "order_sort": OrderSort,"parent_id":ParentId, }) } 修改 BookController.go,SaveSort 函数,调用上面的函数...