javascript - 关于vuejs读取数据的问题
扔个三星炸死你
扔个三星炸死你 2017-06-24 09:43:38
0
2
857

如图所示,用vuejs写了一个发帖子的小小demo,但现在只能读取post里面的img字段,如何把全部字段读取出来?

html代码

js代码

扔个三星炸死你
扔个三星炸死你

全部回复(2)
小葫芦
  1. FileReader 用于本地读取文件的,一般只适用于<input type="file"></input>

  2. 而你的title和content与FileReader没什么关系。它们只受到你data()中的newPost影响。所以你可以在creatPost里面的vm.post.push({img: this.result})改为

vm.post.push({
    title: vm.newPost.title,
    content: vm.newPost.content,
    img: this.result
})

// 同时在最后把post清空
Object.keys(vm.newPost).forEach(item => vm.newPost[item] = '')
phpcn_u1582

数据不是已经在this.newPost 里面了么?

你通过v-model把this.newPost的数据跟dom绑定在一起了,不去this.newPost的数据跟dom绑定在一起了,不去

里面拿,反而从dom里获取数据?🎜
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板