Things I have tried
I’m trying to load a json file in the .obsidian directory .
What I’m trying to do
I use this js code :
const s = dv.io.normalize(“test.json”, “.obsidian/”);
dv.paragraph(s);const jsonString = await dv.io.load(s);
dv.paragraph(jsonString);
This code work when test.json in other obsidian path, but can’t read anything in .obsidian directory .
I don’t know it’s the limitation of dataview, or my code is wrong. please tell me, thanks.