Ace

Results 6 comments of Ace

Angular is getting less attention in China, would it be more appropriate to choose react + hook + ts or vue3 + ts for dashboard refactoring?

Using a familiar technology stack also allows more people to participate in the development and maintenance of the dashboard.

> > Angular is getting less attention in China, would it be more appropriate to choose react + hook + ts or vue3 + ts for dashboard refactoring? > >...

For front-end developers, writing pages is a very simple thing, far less work and much more efficient than refactoring.

我们并没有尝试过在docker alpine 环境下使用当前SDK,因此可能无法给出有效的建议。 建议在ubuntu环境下使用当前SDK。

我们之前有一个类似memos的项目,在对标签的处理上,我们的方案是: 我们有一张Tag表,Tag表内的每条Tag数据都会有一个计数器,计数器记录了当前这个Tag被其它资源(笔记、图片、链接、文件等资源)引用次数。资源标签更新时会同步更新计数器,计数器数值为零时(即未被任何资源引用)系统会自动删除这个标签。另外为了便于快速进行检索,还会有一张关系表,记录了所有标签和资源的关联关系。 标签的提取上由于我们是自己基于slate开发的编辑器,每个标签都是一个Node节点,服务端只需要便利一遍节点数据就可以筛选出所有标签。