-
Hi folks, I have a JSPsych experiment that runs and saves data fine on JATOS. I've adapted the same experiment to run on Pavlova, and it does so successfully. However, it doesn't save data to the server and I get the following error:
Incidentally, I can print the data to the browser console in JSON format, as shown above, so the data exists, it's just not saving to the server. Any tips and hints would be appreciated. Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
I figured it out. Even though I thought I already had innitialised the link with Pavlovia, I hadn't. The following fixed the issue: `var pavlovia_init = { timeline.push(pavlovia_init);` Cheers. |
Beta Was this translation helpful? Give feedback.
I figured it out.
Even though I thought I already had innitialised the link with Pavlovia, I hadn't.
The following fixed the issue:
`var pavlovia_init = {
type: "pavlovia",
command: "init"
};
timeline.push(pavlovia_init);`
Cheers.