If I need to load some text into a database then I could:
- Code it myself in Corvid
Texts.forEach(text => {
const currTextId = text.id;
let textValue = text.text;
$w( “#dataset3” ).setFieldValue(currTextId, textValue);
})
or 2) Go to content manager and choose dataset to connect it manually.
Performance-wise what is the fastest for the webpage to load smoothly?