如何使用 Vue.js 将来自 Firebase 的数据保存为数字
How to save data from Firebase as a number with Vue.js
我将 Firebase 与 Vue.js 一起使用。
这里我用这个命令保存到数据库:
saveEvent(){
db.collection('events').add({
title: this.title,
content: this.content,
start: this.start,
end: this.end,
split: this.split,
})
this.events.push(this.data)
}
一切都保存为字符串,但我想将 'split' 保存为数字。
您对解决方案有什么建议吗?
尝试 split: Number(this.split)
将字符串转换为数字。
我将 Firebase 与 Vue.js 一起使用。 这里我用这个命令保存到数据库:
saveEvent(){
db.collection('events').add({
title: this.title,
content: this.content,
start: this.start,
end: this.end,
split: this.split,
})
this.events.push(this.data)
}
一切都保存为字符串,但我想将 'split' 保存为数字。
您对解决方案有什么建议吗?
尝试 split: Number(this.split)
将字符串转换为数字。