【案例分享】在Vue循环中,指定循环次数和范围,选取数据库中的一部分数据循环遍历在前端网页上

思路:

v-for="(item,index) in list.slice(0, 3)“这种分割数组,然后继续v-for=”(item,index) in list.slice(3, 6)", 可以选取数据库中的一定范围来循环遍历。

实例代码演示:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>世界矿场</title>
    <script src="/vue/vue.min.js"></script>
    <script src="/vue/axios.min.js"></script>
    <style>
        h1{
            text-align: center;
            color: rebeccapurple;
        }
        button{
            width: 100px;
            height: 50px;
            border: none;
            border-radius: 15px;
            font-size: large;
            color: white;
            background-color: darkgreen;
            outline: none;
            cursor: pointer;
            box-shadow: 5px 5px 5px rebeccapurple;
        }
        button:hover{
            transform: translate(3px,3px);
        }
        .f1{
            display: flex;
            justify-content: center;
        }
        .z1{
            width: 160px;
            height: 100px;
            border: none;
            border-radius: 8px;
            color: white;
            box-shadow: 5px 5px 5px gold;

            margin-left: 30px;
            text-align: center;
        }
        #z1{
            background-color: goldenrod;
        }
        #z2{
            background-color: chocolate;
        }
        #z3{
            background-color: cyan;;
        }
        #z4{
            background-color: #8A2BE2;
        }
        .xx1{
            /*流式布局*/
            display: flex;
            /*每个子元素均匀分布*/
            justify-content: space-around;
            margin-top: 30px;
        }

        p{
            font-size:10px;
        }
    </style>
</head>
<body>
<a href="01.kingdom.html">主城</a>
<h1>世界矿场</h1>
<div id="app">
    <h2>金矿</h2>
    <div class="f1">
        <div id="z1" class="z1" v-for="res in resList.slice(0,9)">
            <h2>{{res.grade}}级{{res.type}}</h2>
            <strong>产量:{{res.output}}</strong>
        </div>
    </div>
    <div class="xx1">
        <div v-for="index of 9">
            <button>开采</button>
        </div>
    </div>

    <h2>铜矿</h2>
    <div class="f1">
        <div id="z2" class="z1" v-for="res in resList.slice(9,18)">
            <h2>{{res.grade}}级{{res.type}}</h2>
            <strong>产量:{{res.output}}</strong>
        </div>
    </div>
    <div class="xx1">
        <div v-for="index of 9">
            <button>开采</button>
        </div>
    </div>

    <h2>铁矿</h2>
    <div class="f1">
        <div id="z3" class="z1" v-for="res in resList.slice(18,27)">
            <h2>{{res.grade}}级{{res.type}}</h2>
            <strong>产量:{{res.output}}</strong>
        </div>
    </div>
    <div class="xx1">
        <div v-for="index of 9">
            <button>开采</button>
        </div>
    </div>

    <h2>万能矿</h2>
    <div class="f1">
        <div id="z4" class="z1" v-for="res in resList.slice(27,36)">
            <h2>{{res.grade}}级{{res.type}}</h2>
            <strong>产量:{{res.output}}</strong>
        </div>
    </div>
    <div class="xx1">
        <div v-for="index of 9">
            <button>开采</button>
        </div>
    </div>
</div>

</body>
<script>
    new Vue({
        el:'#app',
        data:{
            resList:[]
        },
        methods:{
            showRes(){
                axios.get('http://localhost:8080/resC').then((resp)=>{
                    this.resList=resp.data
                })
            }
        },
        mounted(){
            this.showRes()
        }
    })
</script>
</html>

 结果演示:

 

 可以将数据库的数据循环遍历。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值