hanshou101

Results 24 comments of hanshou101

昂是的,我也遇到了这个问题。 所以我必须加上:【app.use(express.text())】。 ( 基于NodeJS的 ) 参考链接在:https://stackoverflow.com/a/66270112/6264260

您好。我这边的解决办法,就是在【tagsView.js】文件的state.cacheViews里,手动加上一级菜单和三级菜单之间,缺失的二级菜单的名字。 如下图: ![image](https://user-images.githubusercontent.com/19248935/46018390-58e57080-c10c-11e8-8e32-c8517c94ae75.png)

After my personal experimentation, I found out that the 【 `Array.at()` 】 API is available in the latest version of the 【Chrome browser】; but it is not supported by the...

From my point of view, based on my existing front-end knowledge, I would try to make a temporary fix like this (to get myself back to work quickly). ## 1....

> Inject the js script into the renderer/preload.js file Then repack the app folder with asar > > ```shell > sudo asar pack ./app app.asar > ``` > > and...

# Fix Solution #112 I solved it, it's essentially the same problem as [Can't type colon ":" and forward slash "/" · Issue #112 · notion-enhancer/notion-repackaged](https://github.com/notion-enhancer/notion-repackaged/issues/112). Thank you @[@dario-99] for...

@deanrobin333 # The Simple One A simple but temporary solution, [Ctrl+Shift+I] opens Electron’s Console, and then executes it. Reference: [temporary](https://github.com/notion-enhancer/notion-repackaged/issues/112#issuecomment-1655410475) # The Complex One A complex but permanent solution, unpack...

> > > @deanrobin333 > > > # The Simple One > > > A simple but temporary solution, [Ctrl+Shift+I] opens Electron’s Console, and then executes it. Reference: [temporary](https://github.com/notion-enhancer/notion-repackaged/issues/112#issuecomment-1655410475) >...

赞。在我手动解决RecycleView总是回跳到顶部的问题后, 现在看这个问题的角度和之前不一样了。 之前以为是,刷新后,整个RecyclerView回跳到position的0索引位置。解决办法是,RecyclerView的adapter只set一次,此后直接操作adapter,notifyDataSetChanged()或者notifyItemRangeChanged()。 然后我自己的问题得到基本解决。 现在看大佬们的讨论,似乎是刷新后需要跳到最新的Item的Footer? 我目前没有这需求,不知道 ** adapter里面的notifyXXX ** 的诸多方法,能不能解决大佬们的需要? 。 。。 。。。