Wu Jun

Results 14 issues of Wu Jun

例如正则匹配查询这种就应该少用,与此类似的还有其他的一些禁忌,我们可以逐步总结一些单列一个文档,并且在 SDK 介绍对应的方法和接口的时候给出链接。

enhancement
in slow progress

### 假设前提:实现微信朋友圈的功能 功能点 1. [x] 给朋友圈点赞 2. [x] 查看本条朋友圈有哪些人点了赞 如果单纯上面两个功能,那么假定朋友圈对象是一个 AV.Object('Moment') 那么最好的存储方式如下: ```js let moment = new AV.Object('Moment'); moment.addUnique('likes',AV.User.current().objectId); moment.save(); ``` 上述的实现最大的问题是在朋友圈逐渐增多之后,会出现如下功能查询的缓慢(参照聊天目前 _Conversation 表里面的 m 列的慢查询问题) > 查看当前用户给多少条朋友圈点赞 因此,根本 @sdjcw...

enhancement
need-review

文档的地址暂定为:docs/leanmessage-signature-hosting-in-leanengine.html 该文档的目的,按照重要程度依次如下: 1. **强调开启签名的重要性** 2. 详细介绍签名的流程以及签名算法的代码 3. 科普 SDK 调用云引擎的便捷性 4. 顺带着想增加一些聊天用户对云引擎的使用,增强平台的依赖性 @sunng87 @sdjcw @juvenn

idea

## 存储文档模板 - [ ] 从玩家登录入手讲解 AVUser - [ ] 从玩家头像入手讲解 AVFile - [x] 从武器资料讲解 AVObject - [x] 从武器库的构建讲解 AVQuery 以及复杂查询 - [ ] 从 GM 角色讲解 AVRole

enhancement

- [ ] github readme 标准化 - [ ] 博客公告 - [ ] 论坛发帖公告 - [ ] 开发指南附上博客和github 地址 - [ ] 通知给技术支持对应的问题如何指导用户查看源码来解决

enhancement

## js 和 android 不一样 ```js tom.getQuery().equalTo('tr',true).find(function(conversations){ var chatRoom = conversations[0];// 聊天室对象 }).catch(console.error); ``` ```java AVIMConversationsQuery query = tom.getChatRoomQuery(); query.findInBackground(new AVIMConversationQueryCallback() { @Override public void done(List conversations, AVIMException e) {...

enhancement

Problem Description: can not docker build. ``` docker compose -f "docker-compose.yml" up -d --build ``` Error Message (if any): ![image](https://github.com/toluaina/pgsync/assets/5119542/7e8e61f9-088c-4c6a-b876-4cc297c5e1e5)

**项目名称:和风天气 Graphql** **作者:wujun4code** **作者URL:https://github.com/wujun4code** **项目一句话简介:使用 apollo graphql server 将和风天气 api 包装成一个 graphql 微服务** **主要开发语言: typescript** **项目地址:https://github.com/wujun4code/weather-graphql**

share

```ts static currentApp: RxAVApp; static remotes: Array = []; static add(app: RxAVApp, replace?: boolean) { RxAVClient.remotes.push(app); if (replace) { RxAVClient.currentApp = app; } } static switch(shortname: string) { let tempApp...