leo*_*rdo 6 firebase vue.js vuejs2 google-cloud-firestore
我正在使用带有Vue v模型的文本区域,并将其保存在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
})
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2072 次 |
| 最近记录: |