DataBase How to save in numeric format?


wix code DataBase

Q 1 ) How to save in numeric format?

Q 2 ) How to change the number stored in String?

im code

let body = {
“viewcount”: statistics.viewCount,
“likecount”: statistics.likeCount,
};

wixData.insert(db_name, body).then( (results) => {
console.log(results2);
} );


Have you tried parseint (JavaScript parseInt() Method)? Or maybe your input settings per field are set to text instead of num?