【发布时间】:2018-06-14 20:44:12
【问题描述】:
我正在使用带有 Vue v-model 的文本区域并将其保存在 firestore 集合中。但是换行符在数据库中消失了。
如何解决?
<div class="form-group">
<textarea v-model="docsInfo" rows="3"></textarea>
</div>
// ... JS
export default {
data() {
return {
title: "",
docsInfo: "",
};
},
// ...
db
.collection("posts")
.add({
title: this.title,
info: this.docsInfo // from text area
})
【问题讨论】:
标签: firebase vue.js vuejs2 google-cloud-firestore