亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

vue如何實現商品列表的添加刪除

發布時間:2020-07-27 14:32:11 來源:億速云 閱讀:457 作者:小豬 欄目:web開發

這篇文章主要講解了vue如何實現商品列表的添加刪除,內容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。

我們首先來看下代碼:

<div id="app">
<div class="container"><form class="form-inline">
<div class="form-group"><label for="exampleInputName2">ID:</label> <input id="exampleInputName2" class="form-control" type="text" /></div>
<div class="form-group"><label for="exampleInputEmail2">Name:</label> <input class="form-control" type="text" /></div>
<button class="btn btn-primary" type="button">提交</button></form>
<table class="table table-hover table-striped">
<tbody>
<tr>
<td>ID</td>
<td>品牌名稱</td>
<td>添加時間</td>
<td>操作</td>
</tr>
<tr>
<td>{{item.id}}</td>
<td>{{item.pp_name}}</td>
<td>{{item.add_time | getTime()}}</td>
<td><a>刪除</a></td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/javascript">// <![CDATA[
var app = new Vue({
el: '#app',
data: {
id : '',
name : '',
list : [
{id : 1, pp_name : '安踏', add_time : new Date()},
{id : 2, pp_name : '李寧', add_time : new Date()},
{id : 3, pp_name : '捷豹', add_time : new Date()},
{id : 4, pp_name : '悍馬', add_time : new Date()}
]
},
methods: {
add : function(){
// 數據插入數組操作
this.list.push({id : this.id, pp_name : this.name, add_time : new Date()});
this.id = this.name = ''
},

/* 
根據id刪除數據

分析: 先要找到這一項數據的id,然后根據id刪除索引
找到索引之后直接調用數組的splice方法
*/
del : function(id){
this.list.some((item,i) =>{
if(item.id === id){
this.list.splice(i,1);

// 在數組some中 如果返回值為true,則會立即終止后續的循環
return true;
}
})
}
},
// 時間的過濾
filters:{
getTime:function(value){
let date = new Date(value),
Y = date.getFullYear(),
m = date.getMonth() + 1,
d = date.getDate(),
h = date.getHours(),
min = date.getMinutes(),
s = date.getSeconds();
if(m<10){m = '0' +m;}
if(d<10){d = '0' +d;}
if(h<10){h = '0' +h;}
if(min<10){min = '0' +min;}
if(s<10){s = '0' +s;}

let t = Y + '-' + m + '-' + d + ' | ' + h + ':' + min + ':' + s;
return t;
}
}

})

// ]]></script>

內容補充:

vue中注冊組件,實現列表的添加刪除效果

1、首先在html的<code><head>標簽中</code>導入vue.js

<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>

2、在body中創建一個應用vue模板的容器

// vue起作用的區域root
<div id="root">
// input與mesg數據綁定
<input v-model="mesg" />
<button @click="handle">提交</button>
<ul>
<todo-item v-for='(item,index) in list' :key='index' :index='index' :content='item' @delete='deletes'></todo-item>
</ul>
</div>

3、在script標簽中創建并注冊名為todo-item的組件

Vue.component('todo-item', {
props: ['content', 'index'],
template: '<li @click="handelClick">{{content}}</li>',
methods: {
handelClick: function() {
//點擊li元素就觸發delete方法
this.$emit('delete', this.index);
}
}
})

4、在script標簽中初始化vue實例

new Vue({
el: '#root',
data() {
return {
list: [],
mesg: ''
}
},
methods: {
//點擊提交按鈕,輸入文本信息就加入列表
handle: function() {
if(this.mesg==''){
return;
}
this.list.push(this.mesg);
this.mesg = ''
},
deletes: function(index) {
alert(index)
this.list.splice(index, 1);
}
}
})

看完上述內容,是不是對vue如何實現商品列表的添加刪除有進一步的了解,如果還想學習更多內容,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

临朐县| 姜堰市| 凌海市| 华宁县| 广水市| 怀安县| 澄城县| 武宁县| 三江| 唐河县| 静乐县| 云龙县| 集安市| 铜梁县| 沧州市| 资阳市| 丹阳市| 固始县| 大英县| 合阳县| 万源市| 兴义市| 永平县| 九龙县| 博爱县| 如皋市| 襄汾县| 永善县| 台州市| 昌黎县| 伊吾县| 灌阳县| 张家口市| 临夏县| 潍坊市| 西安市| 遂川县| 和田县| 辉南县| 天峨县| 宁陕县|