You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
下载当前作品功能可以在控制台显示当前作品的数据内容,最好看一看实际的标签名是什么,很多是日文的。
如果确实是英文,为了避免大小写问题,最好也用带i参数的正则表达式来测试。
你希望下载"vindictus"标签,所以需要排除每一个标签都不是"vindictus"。其实相当于任意一个标签是"vindictus"的取反,所以写成 some 取反更好理解?
这是我的过滤器代码
(illust.id > 123456789) && illust.tags.every(t=>t.name!="vindictus") //根据作品ID过滤 和 根据作品标签过滤,
我想要根据 ID 和 作品标签,来过滤掉比较新的作品,但结果似乎只有 标签过滤条件 生效,ID过滤不生效,求解?
我不是很懂代码,求大佬解答?
The text was updated successfully, but these errors were encountered: