前提・実現したいこと
defaulticonをavatar画像をinputする時に切り替えたいのですが
条件分岐が組めず,default画像が映りません(input画像は表示されます。)
原因を教えてもらえませんか?
該当のソースコード
<template> <v-form ref="form" lazy-validation class="mb-6"> <v-row class="pt-4 pl-3"> <v-icon>mdi-account-box</v-icon> <span>ユーザー画像</span> </v-row> <v-row justify="center" class="pt-6"> <v-avatar size="150"> <!-- <img :src="url" /> --> <template v-if="imageFile !== null"> <v-img v-if="imageFile !== null" :src="url" /> <v-img v-else :src="defaultImg" /> </template> <template v-else> <v-img :src="defaultImg" /> </template> </v-avatar> <v-col cols="12"> <input accept="image/png, image/jpeg, image/bmp" prepend-icon="mdi-image" label="画像を選択してください" class="pt-14" id="image-files" ref="image_files" type="file" @change="setImage" /> </v-col> </v-row> </v-form> </template> <script> export default { data(){ return { imageFile: [], url: '', defaultImg: require("@/assets/images/default_user_icon.jpeg") } }, mounted () { this.fetchUser() }, methods: { setImage(e) { e.preventDefault(); this.imageFile = e.target.files[0]; this.upload() }, async upload() { let formData = new FormData(); if (this.imageFile !== null) { formData.append("image", this.imageFile); } this.createPost(formData); }, async fetchUser(get) { const url = 'http://localhost:3000/api/v1/current_user' const response = await this.$axios.get(url, get) this.url = response.data.url }, async createPost(post) { const url = 'http://localhost:3000/api/v1/users' const response = await this.$axios.post(url, post) this.url = response.data.url }, } } </script>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。