diff --git a/docs/常见问题.md b/docs/常见问题.md index 5182041..5882e14 100644 --- a/docs/常见问题.md +++ b/docs/常见问题.md @@ -1,10 +1,10 @@ ## 常见程序运行出错问题 Q: 爬取抖音报错: `execjs._exceptions.ProgramError: SyntaxError: 缺少 ';'`
-A: 该错误为缺少 nodejs 环境这个错误安装 nodejs 环境即可,版本为:`v16.8.0`
+A: 该错误为缺少 nodejs 环境,这个错误可以通过安装 nodejs 环境来解决,版本为:`v16.8.0`
Q: 可以指定关键词爬取吗?
-A: 在config/base_config.py 中 KEYWORDS 参数用于控制需爬取的关键词
+A: 在config/base_config.py 中 KEYWORDS 参数用于控制需要爬取的关键词
Q: 可以指定帖子爬取吗?
A:在config/base_config.py 中 XHS_SPECIFIED_ID_LIST 参数用于控制需要指定爬取的帖子ID列表
diff --git a/store/douyin/douyin_store_impl.py b/store/douyin/douyin_store_impl.py index 1977b44..da26c0a 100644 --- a/store/douyin/douyin_store_impl.py +++ b/store/douyin/douyin_store_impl.py @@ -89,7 +89,7 @@ class DouyinDbStoreImplement(AbstractStore): aweme_detail: Dict = await query_content_by_content_id(content_id=aweme_id) if not aweme_detail: content_item["add_ts"] = utils.get_current_timestamp() - if aweme_detail.get("title"): + if content_item.get("title"): await add_new_content(content_item) else: await update_content_by_content_id(aweme_id, content_item=content_item)