Andy Zheng
Andy Zheng
### 相关平台 H5 **浏览器版本: 92.0.4515.131** **使用框架: React** ### 复现步骤 按照官方的自定义tabbar进行配置后。发现小程序可以正常显示,但是H5不显示 ### 期望结果 H5也支持自定义tabbar ### 实际结果 不支持 ### 环境信息 ``` 👽 Taro v3.3.3 Taro CLI 3.3.3 environment info: System: OS: macOS...
## Your Question 比如我有一个班级表,还有一个学生表,需要查询出班级中学生个数。 ```golang c := query.Class s := query.Student // 这里查询学生个数 sub := s.WithContext(ctx).Select(s.ALL.Count()).Where(s.ClassID.EqCol(c.ID)) // 这里想用一个子查询直接作为一个Field进行查询返回 c.WithContext(ctx).Select(c.ALL, sub.As("student_num")).Find() ``` 目前不支持这个操作,有什么办法吗?这个应该属于比较常见的用法吧 希望可以支持`field.NewSubQuery`类似这样的方法。目前动态属性没办法使用子查询。 @riverchu
## Describe the feature 期望:`GetFieldByName` 返回`field.Field`类型 实际:`GetFieldByName` 返回`field.OrderExpr` ## Movitation 在实际的业务场景中,通常会遇到根据字符串进行构建`SQL`条件的场景,而`GetFieldByName`确返回的是`field.OrderExpr`,虽然可以通过断言获取`field.Field`,但是这个方法个人认为本来就应该返回`field.Field` ## Related Issues #813 #783 #237 #617
### Describe the Bug Now, when you override the options with the WYSIWYG interface to enable the `table` in the `tinymce` editor toolbar. You can't select more than one cell...
#1603 #1445 现在queryParameters的编码使用的是`Uri.encodeQueryComponent`,这个方法使用的规范并不是常用的,通常使用perpercent-encoded是更常规的做法,比如把 空格转为成"%20"而不是"+"