migrate douban collection to bangumi and export douban collection
< Обсуждения migrate douban collection to bangumi
2023年底亲测可用。但如果短评或标签为空,会被设置成"undefined"字符串。
"undefined"
解决方法是在convertItemInfo$1里加上逻辑手动检查collectInfo.tags和collectInfo.comment是否为undefined并替换为空字符串""。
convertItemInfo$1
collectInfo.tags
collectInfo.comment
undefined
""
collectInfo.tags = collectInfo.tags || ""; collectInfo.comment = collectInfo.comment || "";
已修复
Войдите, чтобы ответить.
2023年底亲测可用。但如果短评或标签为空,会被设置成
"undefined"
字符串。解决方法是在
convertItemInfo$1
里加上逻辑手动检查collectInfo.tags
和collectInfo.comment
是否为undefined
并替换为空字符串""
。