diff --git a/lib/notion/getNotionConfig.js b/lib/notion/getNotionConfig.js index 9a8c5072350..637c73eae84 100644 --- a/lib/notion/getNotionConfig.js +++ b/lib/notion/getNotionConfig.js @@ -157,19 +157,12 @@ export async function getConfigMapFromConfigPage(allPages) { // 只导入生效的配置 if (config.enable) { // console.log('[Notion配置]', config.key, config.value) - notionConfig[config.key] = config.value || null + notionConfig[config.key] = parseTextToJson(config.value) || config.value || null // 配置不能是undefined,至少是null } } } - - // 最后检查Notion_Config页面的INLINE_CONFIG,是否是一个js对象 - const combine = Object.assign( - {}, - deepClone(notionConfig), - parseConfig(notionConfig?.INLINE_CONFIG) - ) - return combine + return notionConfig } /** @@ -191,3 +184,16 @@ export function parseConfig(configString) { return {} } } + +/** + * 解析文本为JSON + * @param text + * @returns {any|null} + */ +export function parseTextToJson(text) { + try { + return JSON.parse(text); + } catch (error) { + return null; + } +}