溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

vue.js如何渲染圖片

發(fā)布時間:2020-12-11 11:18:47 來源:億速云 閱讀:369 作者:小新 欄目:編程語言

這篇文章主要介紹vue.js如何渲染圖片,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

vue.js渲染圖片的方法:首先初始化列表;然后獲取上個頁面帶過來的參數(shù),獲取api,app,foot;接著向后傳遞參數(shù);最后渲染本地圖片。

vue.js渲染圖片的方法:

帶參數(shù)傳值

本地美食

<template>
    <div>
        <h2>美食</h2>
        <table border="1">
            <tr>
                <td>美食</td>
                <td>美食圖片</td>
                <td>美食價格</td>
            </tr>
            <tr  v-for="i in footlist">
                <td>{{i.name}}</td>
                <td><img :src="i.img" height="100" width="100"></td> // 渲染本地圖片
                <td>{{i.price}}</td>
            </tr>
        </table>
    </div>
</template>
<script>
    export default {
        name: "foot",
        data: function () {
            return {
                footlist: []  //初始化列表
            }
        },
        mounted() {
            var aa = this.$route.params.id;  //獲取上個頁面帶過來的參數(shù)
            this.axios({
            url: '/api/app/foot/',  //api 是跨越時設(shè)置的 app是路由分發(fā) foot是后端的接口
            data: {aa:aa},   //向后端傳遞參數(shù)
            method: 'post'  //post方式
        }).then((res) => {
            if (res.data.code == 200) {  // code == 200時
                this.footlist = res.data.message; // 初始化賦值
                console.log(res)
            }
        })
        }
    }
</script>
<style scoped>
</style>

以上是“vue.js如何渲染圖片”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI