我有一个小的React应用程序,它将路由链接到位于/src/pages/
下的特定Markdown文件。尝试自动构建内容表,我需要列出/src/pages/
客户端的内容。这是我试过的:
new Promise((resolve, reject) => glob('**/*.md', (error, files) => {
if (error) {
reject(error);
}
resolve(files);
})).then(files => console.log(files));
但readdir
并非在浏览器中可用。