Down below is my subscriber code that I’m using in my social media site that I made through Wix and I need help with the part of the code that’s colored in blue.
import wixUsers from "wix-users"
import wixData from "wix-data"
export function button50_click(event) {
// let's get the userIds
const subscribeeId = $w("#dataset7").getCurrentItem().channelname
const subscriberId = wixUsers.currentUser.id
const user = $w("#dataset8").getCurrentItem().slug
// save them to our "Followings" collection
wixData.insert("VJ-Subscribers", {
"subscribeeId": subscribeeId,
"subscriberId": subscriberId,
"user": user
})
.catch((err) => {
// to help you debug if something went wrong
console.log(err);
});
}