溫馨提示×

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

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

怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能

發(fā)布時(shí)間:2021-04-23 14:17:45 來(lái)源:億速云 閱讀:207 作者:小新 欄目:web開(kāi)發(fā)

小編給大家分享一下怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

為什么要使用Vue

Vue是一款友好的、多用途且高性能的JavaScript框架,使用vue可以創(chuàng)建可維護(hù)性和可測(cè)試性更強(qiáng)的代碼庫(kù),Vue允許可以將一個(gè)網(wǎng)頁(yè)分割成可復(fù)用的組件,每個(gè)組件都包含屬于自己的HTML、CSS、JavaScript,以用來(lái)渲染網(wǎng)頁(yè)中相應(yīng)的地方,所以越來(lái)越多的前端開(kāi)發(fā)者使用vue。

使用Bootstrap實(shí)現(xiàn)簡(jiǎn)單的布局,并結(jié)合Vue進(jìn)行用戶(hù)信息的編輯刪除等功能,代碼如下

<!DOCTYPE html>
<html>
<head>
 <meta charset="utf-8">
 <title>用戶(hù)信息編輯</title>
 <link rel="stylesheet" type="text/css" href="bootstrap.min.css" rel="external nofollow" >
 <script type="text/javascript" src="jquery.js"></script>
 <script type="text/javascript" src="bootstrap.js"></script>
 <script type="text/javascript" src="vue.js"></script>
</head>
<body>
 <div class="container">
  <form role="form">
   <div class="form-group">
    <label for="username">用戶(hù)名</label>
    <input type="text" name="username" class="form-control" placeholder="請(qǐng)輸入用戶(hù)名" v-model="username">
   </div>
   <div class="form-group">
    <label for="password">密碼</label>
    <input type="password" name="password" class="form-control" placeholder="請(qǐng)輸入密碼" v-model="password">
   </div>
   <div class="form-group">
    <button type="button" class="btn btn-primary" @click="add()">添加</button>
    <button type="reset" class="btn btn-danger">重置</button>
   </div>
  </form>
  <hr>
  <table class="table table-bordered table-hover">
   <caption class="h4 text-info">用戶(hù)信息</caption>
   <tr>
    <th class="text-center">序號(hào)</th>
    <th class="text-center">用戶(hù)名</th>
    <th class="text-center">密碼</th>
    <th class="text-center">操作</th>
   </tr>
   <tr class="text-center" v-for="item in myData">
    <td>{{$index+1}}</td>
    <td>{{item.name}}</td>
    <td>{{item.password}}</td>
    <td>
     <button class="btn btn-danger" data-toggle="modal" data-target="#myModal" @click="nowIndex=$index">刪除</button>
    </td>
   </tr>
   <tr v-show="myData.length!=0">
    <td colspan="4" class="text-center">
     <button class="btn btn-danger" data-toggle="modal" data-target="#myModal" @click="nowIndex=-2">刪除全部</button>
    </td>
   </tr>
   <tr v-show="myData.length==0">
    <td colspan="4" class="text-center">
     <h6 class="text-muted">暫無(wú)信息...</h6>
    </td>
   </tr>
  </table>
  <!-- 模態(tài)框 -->
  <div class="modal fade" id="myModal" role="dialog" tabindex="-1">
   <div class="modal-dialog">
    <div class="modal-content">
     <div class="modal-header">
      <button type="button" class="close" data-dismiss="modal"><span>&times;</span></button>
      <h5 class="modal-title text-danger">警告!</h5>
     </div>
     <div class="modal-body">
      <h5 class="text-center">確認(rèn)刪除?</h5>
     </div>
     <div class="modal-footer">
      <button type="button" data-dismiss="modal" class="btn btn-primary">取消</button>
      <button type="button" data-dismiss="modal" class="btn btn-danger" @click="deleteMsg(nowIndex)">確認(rèn)</button>
     </div>
    </div>
   </div>
  </div>
 </div>
<script type="text/javascript">
 new Vue({
  el: ".container",
  data: {
   myData:[],
   username:"",
   password:"",
   nowIndex:-100
  },
  methods:{
   add:function(){
    this.myData.push({
     name:this.username,
     password:this.password
    });
    this.username="";
    this.password="";
   },
   deleteMsg:function(n){
    if(n==-2){
     this.myData=[];
    }else{
     this.myData.splice(n,1);
    }
   }
  }
 });
</script>
</body>
</html>

實(shí)現(xiàn)效果如下,因?yàn)橹皇呛?jiǎn)單的實(shí)現(xiàn)編輯刪除的功能,因此密碼就直接顯示在表格中,沒(méi)有進(jìn)行加密顯示

整體布局界面


怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能

用戶(hù)信息編輯后添加

怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能

刪除數(shù)據(jù)

怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能

看完了這篇文章,相信你對(duì)“怎么使用Bootstrap和Vue實(shí)現(xiàn)用戶(hù)信息的編輯刪除功能”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

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

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

AI