Hi all!
I have searched a lot about this issue and I really didn’t find an answer.
I have a dynamic page (item), to be updated by member author.
I set the Collection permissions.
Then the page displays all the fields of “Professional” properly, using the dataset read&write etc.
Now the problem is:
I can update this item of Collection, whithout any problem, but ONLY AT THE FIRST TIME.
The second time I try to update, even in the same session or logging out and in, I receive the message: “Error: The current user does not have permissions to update on the Professionals collection.”
I don’t understand what is happening. I can imagine it’s one of two situations.
When the first update runs:
- It’s overwriting the _id in a different format or;
- It’s overwiriting the permitions settings, not for the Collection, but something attached to the member/user/author. I don’t know.
The code is:
export function button1_click() {
let toUpdate = {
"_id": wixUsers.currentUser.id,
"name": $w("#input1").value,
"email": $w("#input2").value,
"phone1": $w("#input3").value,
"phone2": $w("#input4").value,
"address": $w("#input5").value,
"city": $w("#dropdown1").value,
"facebook": $w("#input6").value,
"instagram": $w("#input7").value,
"site": $w("#input8").value,
"description": $w("#textBox1").value,
"picture": $w("#image4").src,
"isProfessional": true
};
wixData.update("Professionals", toUpdate)
.then( (results) => {
let item = results; //see item below
$w("#input9").value = "UPDATED"; //It's my log
} )
.catch( (err) => {
let errorMsg = err;
$w("#input9").value = err; //It's my log
} );
}
Could anyone tell how to solve this?
Thanks in advance.