摘要:插件使用官網(wǎng)官網(wǎng)有使用簡(jiǎn)介,這里記錄下插件使用過(guò)程遇到的坑。使用中數(shù)據(jù)格式是這樣的發(fā)請(qǐng)求后返回?cái)?shù)據(jù)結(jié)構(gòu)是這樣的所以將數(shù)據(jù)結(jié)構(gòu)寫(xiě)成符合預(yù)期的這個(gè)參數(shù)可能有幾個(gè)是會(huì)報(bào)錯(cuò),過(guò)濾掉。完整栗子如下請(qǐng)使用產(chǎn)品名模糊查詢后選擇對(duì)應(yīng)產(chǎn)品下載
jquery.mentsInput插件使用:
官網(wǎng):http://podio.github.io/jquery...
官網(wǎng)有使用簡(jiǎn)介,這里記錄下插件使用過(guò)程遇到的坑。
js部分:
if( settings.elastic ) {
elmInputBox.elastic();
}
會(huì)報(bào)錯(cuò),這里注釋掉 elmInputBox.elastic();可以繼續(xù)使用。
使用中數(shù)據(jù)格式是data這樣的:
$("textarea.mention").mentionsInput({
onDataRequest:function (mode, query, callback) {
var data = [
{ id:1, name:"Kenneth Auchenberg", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" }, { id:2, name:"Jon Froda", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" }, { id:3, name:"Anders Pollas", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" }, { id:4, name:"Kasper Hulthin", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" }, { id:5, name:"Andreas Haugstrup", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" }, { id:6, name:"Pete Lacey", "avatar":"http://cdn0.4dots.com/i/customavatars/avatar7112_1.gif", "type":"contact" } ]; data = _.filter(data, function(item) { return item.name.toLowerCase().indexOf(query.toLowerCase()) > -1 }); callback.call(this, data);
}
});
發(fā)請(qǐng)求后api返回?cái)?shù)據(jù)結(jié)構(gòu)是這樣的:
[{
"last_update_time":1479719379472,
"asin":"B012AADEMI",
"list_price":null,
"name":"WildBird Care Vertical Pull-out Tray Bird Feeder BCF4A,
Natural color", "publisher":"WildBird Care LLC",
"product_width":9.0,
"product_length":6.0,
"storage_item":[
],
"brand":"WildBird Care",
"purchase_items":[
],
"standard_sku":null,
"product_type_name":"PET_SUPPLIES",
"image_url":"http://ecx.images-amazon.com/...",
"product_height":14.2,
"product_group":"Pet Products",
"id":"bbd45493-baa0-4862-ab24-7083ea203b88",
"product_weight":2.4
},
{
"last_update_time":1479859200000,
"asin":"B012AADEWI",
"list_price":24.15,
"name":"WildBird Care Wooden Upside-down Suet Feeder BCF2A,
Natural Color", "publisher":"WildBird Care LLC",
"product_width":9.1,
"product_length":9.3,
"storage_item":[
],
"brand":"WildBird Care",
"purchase_items":[
],
"standard_sku":null,
"product_type_name":"PET_SUPPLIES",
"image_url":"http://ecx.images-amazon.com/...",
"product_height":4.7,
"product_group":"Pet Products",
"id":"87a04d9b-0b69-4e3d-a19f-19f3d4bdb4f0",
"product_weight":1.95
}]
所以將數(shù)據(jù)結(jié)構(gòu)寫(xiě)成符合預(yù)期的:name這個(gè)參數(shù)可能有幾個(gè)是 null會(huì)報(bào)錯(cuò),過(guò)濾掉。
var info = $.grep(JSON.parse(resData),function (v,i) {
if(v.name!=null){ return v.name; } }); var arr = []; for (var i = 0;i預(yù)期的數(shù)據(jù)結(jié)構(gòu)這樣:
{
"id" : 1,
"name" : "Kenneth Auchenberg",
"avatar": "http://cdn0.4dots.com/i/custo...",
"icon" : "icon-16 icon-person",
"type" : "contact"
}
我把id這個(gè)參數(shù)換成了要反會(huì)給后端的asin(類似id),在列表項(xiàng)顯示產(chǎn)品名稱,選擇對(duì)應(yīng)的產(chǎn)品后,
會(huì)替換成對(duì)應(yīng)的產(chǎn)品asin;然后在調(diào)用getMentions這個(gè)函數(shù)獲取數(shù)據(jù)傳給后端。
var asin = "";$("#asin").mentionsInput("getMentions", function(data) { $.each(data,function (index,val) { asin += val.id+";" }) });完整栗子如下:
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://m.specialneedsforspecialkids.com/yun/81193.html
摘要:介紹微信風(fēng)格的,與客戶端體驗(yàn)一致,這個(gè)自己去微信上看吧,略。微信調(diào)試一件套,網(wǎng)頁(yè)授權(quán)模擬集成代理遠(yuǎn)程調(diào)試。這些在微信開(kāi)發(fā)者中心有介紹,略。年微信開(kāi)發(fā)經(jīng)驗(yàn)的人,終于又成為了零年開(kāi)發(fā)經(jīng)驗(yàn)的人,重新走上了踩坑之路。 showImg(https://segmentfault.com/img/bVtEd1);活動(dòng)地址:http://fequan.com/2016/ 注意:英文不好,小記也帶有自己...
摘要:前言這里筑夢(mèng)師是一名正在努力學(xué)習(xí)的開(kāi)發(fā)工程師目前致力于全棧方向的學(xué)習(xí)希望可以和大家一起交流技術(shù)共同進(jìn)步用簡(jiǎn)書(shū)記錄下自己的學(xué)習(xí)歷程個(gè)人學(xué)習(xí)方法分享本文目錄更新說(shuō)明目錄學(xué)習(xí)方法學(xué)習(xí)態(tài)度全棧開(kāi)發(fā)學(xué)習(xí)路線很長(zhǎng)知識(shí)拓展很長(zhǎng)在這里收取很多人的建議以后決 前言 這里筑夢(mèng)師,是一名正在努力學(xué)習(xí)的iOS開(kāi)發(fā)工程師,目前致力于全棧方向的學(xué)習(xí),希望可以和大家一起交流技術(shù),共同進(jìn)步,用簡(jiǎn)書(shū)記錄下自己的學(xué)習(xí)歷程...
閱讀 3402·2021-11-22 15:22
閱讀 2382·2021-09-06 15:00
閱讀 885·2020-06-22 14:39
閱讀 3712·2019-08-30 15:56
閱讀 1549·2019-08-30 12:55
閱讀 3285·2019-08-29 17:19
閱讀 3238·2019-08-26 11:41
閱讀 623·2019-08-23 17:14