zhangle1
zhangle1
notsup Unsupported platform for [email protected]: wanted {"os":"darwin","arch":"arm64"} (current: {"os":"win32","arch":"x64"})
就是四个月前的老版本
### My environment:android 极光默认拿到文件事件(FileMessage)是不下载附件的: 因此我需要自己手动下载文件: if (fileContent.getLocalPath()==null||fileContent.getLocalPath().equals("")){ fileContent.downloadFile(message, new DownloadCompletionCallback() { @Override public void onComplete(int i, String s, File file) { //刷新adapter.itemChange()? 如何拿到那个position? } }); }
1.主要是想实现服务端多列排序 2.复现例子: 2.1: ant design table 点击排序,可以正常返回数据 https://codesandbox.io/s/shai-xuan-he-pai-xu-antd-4-21-7-forked-8xdvtd?file=/demo.js 2.2 ant design protable 点击排序,出现异常错误 https://codesandbox.io/s/wu-cha-xun-biao-dan-forked-lkc7k7?file=/App.tsx:2866-2903 实际调试返回的数据格式也很奇怪,只有一个排序的时候返回的是一个对象,点了两个列排序后返回空数组?
ProTable 对于某一字段类型 提供包含,不包含,大于,等于,小于.... sql查询条件
- [ ] I have searched the [issues](https://github.com/vueComponent/ant-design-vue/issues) of this repository and believe that this is not a duplicate. ### Version 3.2.20 ### Environment windows ### Reproduction link [ https://github.com/vueComponent/ant-design-vue/issues/new/choose](...
前端传参 ```input {"pageIndex":0,"pageSize":12,"sorts":[{"name":"device_state","order":"asc"},{"name":"id","order":"asc"}],"terms":[{"terms":[{"type":"or","value":"2024-06-29 11:22:55","termType":"gt","column":"today_start_timeb"}]}]} ``` java代码方面 ```java Mono source = queryHelper .select("WITH today_device_state AS (\n" + " SELECT\n" + " device_code,\n" + " MIN(start_time) AS today_start_timeb,\n" + " MAX(start_time) AS...
```java @PostMapping({"/_queryTest"}) @QueryAction @QueryOperation( summary = "使用Post方式分页动态查询" ) public Mono queryPagerTest(Mono query) { String today = LocalDate.now().toString(); return QueryHelper .transformPageResult( //分页查询原始数据 service.queryPager(query), list -> { Mono collectList = QueryHelper .combineOneToMany(...