文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

详解vue中v-for和v-if一起使用的替代方法template

2024-04-02 19:55

关注

vue中v-for和v-if一起使用的替代方法template

版本

vue 2.9.6
element-ui: 2.15.6

目标效果

说明

在 vue 2.x 中,在一个元素上同时使用 v-if 和 v-for 时,v-for 会优先作用

解决方法

  1. 选择性地渲染列表,例如根据某个特定属性(category )来决定不同展示渲染,使用计算属性computed 见https://www.jb51.net/article/247179.htm
  2. 使用template占位,将循环放在template中,v-if作用于元素,此方法script中不用定义computed方法

核心代码片段

<div>
  <el-divider content-position="left">奥迪</el-divider>
  <template v-for="(item, index) in links">
    <el-link type="primary" :href="item.url" :key="index" v-if="item.category==0">
      <el-button type="primary">{{item.name}}</el-button>
    </el-link>
  </template>
  <el-divider content-position="left">奔驰</el-divider>
  <template v-for="(item, index) in links">
    <el-link type="primary" :href="item.url" :key="index" v-if="item.category==1">
      <el-button type="primary">{{item.name}}</el-button>
    </el-link>
  </template>
  <el-divider content-position="left">宝马</el-divider>
  <template v-for="(item, index) in links">
    <el-link type="primary" :href="item.url" :key="index" v-if="item.category==2">
      <el-button type="primary">{{item.name}}</el-button>
    </el-link>
  </template>
</div>

Car.vue

<template>
  <div>
    <el-row>
      <el-col :span="24">
        <el-form :inline="true" class="user-search">
          <el-form-item>
            <el-button size="small" type="primary" icon="el-icon-plus" @click="handleEdit()" plain>添加链接</el-button>
          </el-form-item>
        </el-form>
        <div>
          <el-divider content-position="left">奥迪</el-divider>
          <template v-for="(item, index) in links">
            <el-link type="primary" :href="item.url" :key="index" v-if="item.category==0">
              <el-button type="primary">{{item.name}}</el-button>
            </el-link>
          </template>
          <el-divider content-position="left">奔驰</el-divider>
          <template v-for="(item, index) in links">
            <el-link type="primary" :href="item.url" :key="index" v-if="item.category==1">
              <el-button type="primary">{{item.name}}</el-button>
            </el-link>
          </template>
          <el-divider content-position="left">宝马</el-divider>
          <template v-for="(item, index) in links">
            <el-link type="primary" :href="item.url" :key="index" v-if="item.category==2">
              <el-button type="primary">{{item.name}}</el-button>
            </el-link>
          </template>
        </div>
        <!-- 添加界面 -->
        <el-dialog :title="title" :visible.sync="editFormVisible" width="30%" @click="closeDialog">
          <el-form label-width="120px" :model="editForm" :rules="rules" ref="editForm">
          <el-form-item label="链接名称" prop="name">
            <el-input size="small" v-model="editForm.name" auto-complete="off" placeholder="请输入链接名称"></el-input>
          </el-form-item>
          <el-form-item label="链接地址" prop="url">
            <el-input size="small" v-model="editForm.url" auto-complete="off" placeholder="请输入链接地址"></el-input>
          </el-form-item>
          </el-form>
          <div slot="footer" class="dialog-footer">
          <el-button size="small" @click="closeDialog">取消</el-button>
          <el-button size="small" type="primary" :loading="loading" class="title" @click="submitForm('editForm')">保存</el-button>
          </div>
        </el-dialog>
      </el-col>
    </el-row>
  </div>
</template>
<script>
import { getLink, saveLink } from '../../api/userMG'
export default {
  data() {
    return {
      links: [],
      loading: false, //显示加载
      editFormVisible: false, //控制添加页面显示与隐藏
      title: '添加链接',
      editForm: {
        name: '',
        url: ''
      },
      // rules表单验证
      rules: {
        name: [{ required: true, message: '请输入链接名称', trigger: 'blur' }],
        url: [{ required: true, message: '请输入链接地址', trigger: 'blur' }]
      },
    }
  },
  created() {
    // 获取链接
   this.getdata()
  },
  // 这下面的方法只有被调用才会被执行
  methods: {
    // 获取链接
    getdata() {
      this.loading = true
      getLink().then((response) => {
        this.loading = false
        console.log(response.data)
        this.links = response.data
      }).catch(error => {
        console.log(error)
      })
    },
    // 添加页面方法
    handleEdit: function() {
      this.editFormVisible = true
      this.title = '添加链接',
      this.editForm.name = '',
      this.editForm.url = ''
    },
    // 添加保存页面方法
    submitForm(editData) {
      this.$refs[editData].validate(valid => {
        if (valid) {
          saveLink(this.editForm).then(response => {
            this.editFormVisible = false
            this.loading = false
            // if (response.success)
            this.getdata()
            this.$message({
              type: 'success',
              message: '链接添加成功'
            })
          }).catch(error => {
            this.editFormVisible = false
            this.loading = false
            // console.log(error.response.data['url'][0])
            // console.log(error.response.status)
            // this.$message.error('链接添加失败,请稍后再试')
            if (error.response.status == 400 ) {
              this.$message.error(error.response.data['url'][0]+'如: http://xxx 或 https://xxx')
            }else {
              this.$message.error('链接添加失败,请稍后再试')
            }
          })
        }
      })
    },
    // 关闭添加链接窗口
    closeDialog() {
      this.editFormVisible = false
    }
  }
}
</script>
<style>
  
  .el-link {
    margin-right: 5px;
  }
</style>

到此这篇关于详解vue中v-for和v-if一起使用的替代方法template的文章就介绍到这了,更多相关vue 替代方法template内容请搜索编程网以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程网!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯