vue搜索頁開發(熱門搜索,歷史搜索,淘寶介面演示)

来源:https://www.cnblogs.com/chenyingying0/archive/2020/04/10/12670289.html
-Advertisement-
Play Games

完整效果演示 首先完成這個偽搜索框 src/components/search/index.vue (通用搜索框組件) <template> <div class="mine-search-box-wrapper"> <i class="iconfont icon-search"></i> <div ...


完整效果演示

 

首先完成這個偽搜索框

src/components/search/index.vue (通用搜索框組件)

<template>
  <div class="mine-search-box-wrapper">
    <i class="iconfont icon-search"></i>
    <div class="mine-search-box" v-if="fake">{{placeholder}}</div>
    <input
      class="mine-search-box"
      type="text"
      title="搜索框"
      :placeholder="placeholder"
      ref="input"
      v-model="query"
      v-if="!fake"
    >
    <i
      class="iconfont icon-close"
      v-show="query"
      @click="reset"
    ></i>
  </div>
</template>

<script>
import {debounde} from 'assets/js/util';


export default {
    name:'Search',
    props:{//接收的參數
        placeholder:{
            type:String,
            default:'請輸入搜索內容'
        },
        fake:{
            type:Boolean,
            default:false
        }
    },
    data(){
        return{
            query:'',
        }
    },
    watch:{
        query:debounde(function(){
            this.$emit('query',this.query);
        })
    },
    methods:{
        focus(){
            this.$refs.input && this.$refs.input.focus();
        },
        clear(){
            this.query='';
        },
        reset(){//重置
            this.clear();
            this.focus();
        }
    }
}
</script>

<style lang="scss" scoped>
    $search-box-height: 30px;
    $icon-color: #ccc;
    $icon-font-size-sm: 18px;

  .mine-search-box-wrapper {
    display: flex;
    align-items: center;
    width: 85%;
    height: $search-box-height;
    padding: 0 7px;
    background-color: #fff;
    border-radius: $search-box-height / 2;
    margin-left:15px;
  }

  .iconfont {
    color: $icon-color;
    font-size: $icon-font-size-sm;
    font-weight: bold;
  }

  .mine-search-box {
    flex: 1;
    background: none;
    border: none;
    margin: 0 6px;
    color: #666;
    line-height: 1.5;
  }
</style>

 

src/assets/js/util.js  節流函數(防止請求數據時頻率過快消耗性能)

//函數節流
export const debounde=(func,delay=200)=>{
    let timer=null;

    return function(...args){
        timer && clearTimeout(timer);

        timer=setTimeout(()=>{
            func.apply(this,args);
        },delay);
    }
}

 

在分類頁的頭部組件中引入搜索框組件

src/pages/category/header.vue

<template>
    <div class="header">
        <i class="iconfont icon-scan header-left"></i>
        <div class="header-center">
            <search placeholder="開學季有禮,好貨五折起" @query='getQuery' fake @click.native="goToSearch" />
        </div>
        <i class="iconfont icon-msg header-right"></i>
    </div>
</template>

<script>
import Search from 'components/search';

export default {
    name:'CategoryHeader',
    components:{
        Search
    },
    methods:{
        getQuery(query){
            console.log(query);
        },
        goToSearch(){
            this.$router.push('/search');
        }
    }
}
</script>

<style lang="scss" scoped>
    .header{
        background-color:rgba(222, 24, 27, 0.9);
        transition:background-color 0.5s;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding:5px 20px;

        .iconfont{
            font-size:24px;
            color:#fff;
        }

        .header-center{
            flex:1;
        }
    } 
</style>

 

點擊搜索框之後會跳轉到真正的搜索頁

 

 

熱門搜索組件

 

 

src/pages/search/hot.vue

<template>
  <div class="hot">
    <h4 class="hot-title">熱門搜索</h4>
    <div class="loading-container" v-if="!hots.length">
      <me-loading/>
    </div>
    <ul class="hot-list" v-else>
      <li class="hot-item" v-for="(item,index) in hots" :key="index" @click="$_selectItem(item.hotWord)">
          {{item.hotWord}}
      </li>
    </ul>
  </div>
</template>

<script>
import Search from 'components/search';
import MeLoading from 'components/loading';
import {getHot} from 'api/search';
import {searchMixin} from 'api/mixins';

export default {
    name:'SearchHot',
    components:{
        MeLoading
    },
    data(){
        return{
            hots:[]
        }
    },
    mixins:[searchMixin],
    created(){
        this.getHot().then(()=>{
            this.$emit('loaded');
        })
    },
    methods:{
       getHot(){
           return getHot().then(data=>{
               return new Promise(resolve=>{
                   if(data){
                       this.hots=data;
                       resolve();
                   }
               })
           })
       }
    }
}
</script>

<style lang="scss" scoped>
$border-color: #e5e5e5;
$font-size-base: 12px;
$font-size-l: $font-size-base + 2;

 .hot {
    padding-left: 10px;
    background-color: #fff;
    border-bottom: 1px solid $border-color;
    margin-bottom: 10px;

    &-title {
      height: 34px;
      line-height: 34px;
      font-size: $font-size-l;
      font-weight: bold;
    }

    &-list {
      display: flex;
      flex-wrap: wrap;
    }

    &-item {
      padding: 8px;
      background-color: #f0f2f5;
      border-radius: 4px;
      margin: 0 10px 10px 0;
      color: #686868;
    }
  }

  .loading-container {
    padding: 10px 0;
  }
</style>

 

axios獲取熱門搜索數據

src/api/search.js

import axios from 'axios';

//獲取熱門搜索數據 ajax
export const getHot=()=>{
    return axios.get('http://www.imooc.com/api/search/hot').then(res=>{
        
        res=res.data.hotKeyWord;
        if(res && res.owner){
            return res.owner;
        }
        throw new Error('沒有成功獲取到數據');

    }).catch(err=>{
        console.log(err);
    });
}

 

點擊搜索的關鍵詞,跳轉到淘寶搜索程式

src/api/mixins.js

import storage from 'assets/js/storage';
import {SEARCH_HISTORY_KEYWORD_KEY} from 'pages/search/config';

export const searchMixin={
    methods:{
        $_selectItem(keyword){
            let keywords=storage.get(SEARCH_HISTORY_KEYWORD_KEY,[]);//找到所有搜索歷史
 
             if(keywords.length!=0){
                 keywords=keywords.filter(val=>val!=keyword);//這次的關鍵詞如果在搜索歷史里已存在,先剔除掉
             }
 
             keywords.unshift(keyword);//把這次的關鍵詞放在搜索歷史的最開頭
            
            storage.set(SEARCH_HISTORY_KEYWORD_KEY,keywords);//更新搜索歷史
 
            //跳轉到淘寶搜索頁
            location.href = `https://s.m.taobao.com/h5?event_submit_do_new_search_auction=1&_input_charset=utf-8&topSearch=1&atype=b&searchfrom=1&action=home%3Aredirect_app_action&from=1&sst=1&n=20&buying=buyitnow&q=${keyword}`;
        }
    }
}

 

本地存儲文件 assets/js/storage.js

const storage = window.localStorage;

export default {
  set(key, val) {
    if (val === undefined) {
      return;
    }
    storage.setItem(key, serialize(val));
  },
  get(key, def) {
    const val = deserialize(storage.getItem(key));
    return val === undefined ? def : val;
  },
  remove(key) {
    storage.removeItem(key);
  },
  clear() {
    storage.clear();
  }
};

function serialize(val) {
  return JSON.stringify(val);
}

function deserialize(val) {
  if (typeof val !== 'string') {
    return undefined;
  }
  try {
    return JSON.parse(val);
  } catch (e) {
    return val || undefined;
  }
}

 

搜索頁配置文件 src/pages/search/config.js

const prefix = 'mall-search';
const suffix = 'key';
export const SEARCH_HISTORY_KEYWORD_KEY = `${prefix}-history-keyword-${suffix}`;

 

歷史搜索組件

 

 

src/pages/search/history.vue

<template>
  <div class="history" v-if="historys.length">
    <h4 class="history-title">歷史搜索</h4>
    <transition-group class="g-list" tag="ul" name="list">
      <li class="g-list-item" v-for="item in historys" :key="item" @click="$_selectItem(item)">
          <span class="g-list-text">{{item}}</span>
          <!-- .stop 禁止事件冒泡 -->
          <i class="iconfont icon-delete" @click.stop="removeItem(item)"></i>
      </li>
    </transition-group>
    <a href="javascript:;" class="history-btn" @click="showConfirm">
        <i class="iconfont icon-clear" ></i>
        清空歷史搜索
    </a>
  </div>
</template>

<script>
import storage from 'assets/js/storage';
import {SEARCH_HISTORY_KEYWORD_KEY} from 'pages/search/config';
import {searchMixin} from 'api/mixins';


export default {
    name:'SearchHistory',
    data(){
        return{
            historys:[]
        }
    },
    mixins:[searchMixin],
    created(){
        this.getKeyword();
    },
    methods:{
        update(){
          this.getKeyword();
        },
        getKeyword(){
            this.historys=storage.get(SEARCH_HISTORY_KEYWORD_KEY,[]);
            this.$emit('loaded');
        },
        removeItem(item){
          this.historys=this.historys.filter(val=>val!==item);//點擊後刪除該項
          storage.set(SEARCH_HISTORY_KEYWORD_KEY,this.historys);//更新緩存
          this.$emit('remove-item');
        },
        showConfirm(){
          this.$emit('show-confirm');
        },
        clear(){
          storage.remove(SEARCH_HISTORY_KEYWORD_KEY);
        }
    }
}
</script>

<style lang="scss" scoped>

    $border-color: #e5e5e5;
    $font-size-base: 12px;
    $font-size-l: $font-size-base + 2;
    $border-color: #e5e5e5;

    @mixin flex-center($direction: row) {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: $direction;
    }

  .history {
    padding-bottom: 30px;
    background-color: #fff;

    &-title {
      height: 34px;
      line-height: 34px;
      padding: 0 10px;
      font-size: $font-size-l;
      font-weight: bold;
    }

    &-btn {
      @include flex-center();
      width: 80%;
      height: 40px;
      background: none;
      border: 1px solid #ccc;
      border-radius: 4px;
      margin: 0 auto;
      color: #686868;

      .iconfont {
        margin-right: 5px;
      }
    }
  }

  .g-list {
    border-top: 1px solid $border-color;
    border-bottom: 1px solid $border-color;
    margin-bottom: 20px;
  }

  .list {
    &-enter-active,
    &-leave-active {
      transition: height 0.1s;
    }

    &-enter,
    &-leave-to {
      height: 0;
    }
  }

</style>

 

列表樣式統一抽離出去

src/assets/scss/_list.scss

// list
@mixin flex-between() {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

//ellipsis
@mixin ellipsis() {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  $border-color: #e5e5e5;
  
.g-list {
  padding-left: 10px;
}
.g-list-item {
  overflow: hidden;
  @include flex-between();
  height: 44px;
  padding-right: 10px;
  border-bottom: 1px solid $border-color;
  color: #686868;

  &:last-child {
    border-bottom: none;
  }
}
.g-list-text {
  flex: 1;
  line-height: 1.5;
  @include ellipsis();
}

 

src/assets/scss/index.scss

@import 'icons';
@import 'list';

*{
    margin:0;
    padding:0;
}
html,body{
    // 必須設置,否則內容滾動效果無法實現
    width:100%;
    height:100%;
}
ul,li{
    list-style:none;
}
a{
    text-decoration: none;
    color:#333;
}

 

確認框組件

 

 

src/components/comfirm/index.vue

<template>
    <transition name="mine-confirm">
        <div class="mine-confirm-wrapper" v-show="visible">
            <div class="mine-confirm">
                <div class="mine-confirm-title">{{title}}</div>
                <div class="mine-confirm-msg">{{msg}}</div>
                <div class="mine-confirm-btns">
                    <button class="mine-confirm-btn mine-confirm-cancel" @click="cancel">{{cancelBtnText}}</button>
                    <button class="mine-confirm-btn mine-confirm-ok" @click="confirm">{{confirmBtnText}}</button>
                </div>
            </div>
        </div>
    </transition>
</template>

<script>
export default {
    name:'MineConfirm',
    props:{
        title:{
            type:String,
            default:''
        },
        msg:{
            type:String,
            default:'確定執行此操作嗎?'
        },
        cancelBtnText:{
            type:String,
            default:'取消'
        },
        confirmBtnText:{
            type:String,
            default:'確定'
        }
    },
    data(){
        return{
            visible:false
        }
    },
    methods:{
        show(){
            this.visible=true;
        },
        hide(){
            this.visible=false;
        },
        cancel(){
            this.hide();
            this.$emit('cancel');
        },
        confirm(){
            this.hide();
            this.$emit('confirm');
        }
    }
}
</script>

<style lang="scss" scoped>

$search-z-index: 1200;
$search-popup-z-index: $search-z-index + 10;
$modal-bgc: rgba(0, 0, 0, 0.4);

@mixin flex-center($direction: row) {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: $direction;
}
@mixin ellipsis() {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

  .mine-confirm-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: $search-popup-z-index;
    @include flex-center();
    background-color: $modal-bgc;
  }

  .mine-confirm {
    overflow: hidden;
    width: 88%;
    background-color: #fff;
    border-radius: 10px;
    font-size: 16px;

    &-title {
      padding: 20px 15px 0;
      font-size: 18px;
      text-align: center;
      @include ellipsis();

      & + .mine-confirm-msg {
        padding-top: 20px;
        padding-bottom: 20px;
      }
    }

    &-msg {
      padding: 40px 15px;
      text-align: center;
      line-height: 1.5;
    }

    &-btns {
      display: flex;
    }

    &-btn {
      flex: 1;
      height: 44px;
      line-height: 44px;
      background: none;
      border: none;
    }

    &-cancel {
      border-top: 1px solid #e3e5e9;
    }

    &-ok {
      background-color: #f23030;
      color: #fff;
    }
  }

  .mine-confirm {
    &-enter-active,
    &-leave-active {
      transition: opacity 0.3s;
    }

    &-enter,
    &-leave-to {
      opacity: 0;
    }

    &-enter-active {
      .mine-confirm {
        animation: bounce-in 0.3s;
      }
    }
  }

  // https://cn.vuejs.org/v2/guide/transitions.html#CSS-動畫
  @keyframes bounce-in {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
</style>

 

 搜索結果頁

 

 

src/pages/search/result.vue

<template>
    <div class="result">
    <div class="loading-container" v-show="loading">
      <me-loading/>
    </div>
    <ul class="g-list" v-show="!loading && results.length">
      <li
        class="g-list-item"
        v-for="(item, index) in results"
        :key="index"
        @click="$_selectItem(item[0])"
      >
        <span class="g-list-text">{{item[0]}}</span>
      </li>
    </ul>
    <div class="no-result" v-show="!loading && !results.length">沒有結果</div>
  </div>
</template>

<script>
  import MeLoading from 'components/loading';
  import {getSearchResult} from 'api/search';
  import {searchMixin} from 'api/mixins';

export default {
    name:'SearchResult',
    components:{
        MeLoading
    },
    data(){
        return{
            results:[],
            loading:false
        }
    },
    props:{
        query:{
            type:String,
            default:''
        }
    },
    mixins:[searchMixin],
    watch:{
        query(query){
            
            this.getResults(query);
        }
    },
    methods:{
        getResults(keyword){
            if(!keyword){
                return;
            }

            this.loading=true;
            getSearchResult(keyword).then(data=>{
                console.log(data);
                if(data){
                    
                    this.results=data;
                    this.loading=false;
                }
            })
        }
    }
}
</script>

 

修改src/api/search.js

import axios from 'axios';
import jsonp from 'assets/js/jsonp';

//獲取熱門搜索數據 ajax
export const getHot=()=>{
    return axios.get('http://www.imooc.com/api/search/hot').then(res=>{
        
        res=res.data.hotKeyWord;
        if(res && res.owner){
            return res.owner;
        }
        throw new Error('沒有成功獲取到數據');

    }).catch(err=>{
        console.log(err);
    });
}

//獲取搜索框的搜索結果
export const getSearchResult=keyword=>{
    const url='https://suggest.taobao.com/sug';
    
    const params={
        q:keyword,
        code:'utf-8',
        area:'c2c',
        nick:'',
        sid:null
    };
    //https://suggest.taobao.com/sug?q=apple&code=utf-8&area=c2c&nick=&sid=null&callback=jsonp5
    return jsonp(url, params, {
        param: 'callback'
      }).then(res => {
         console.log(res);
        if (res.result) {
            // console.log(res);
            return res.result;
        }

        throw new Error('沒有成功獲取到數據!');
    }).catch(err => {
        if (err) {
            console.log(err);
        }
    });
};

 

最後,當刪除歷史搜索之後,也需要更新滾動條

修改src/pages/search/index.vue

 

 

修改src/pages/search/history.vue

(因為頁面載入時有100ms延遲的動畫,因此這裡更新滾動條也需要相同的延遲)

 

 

註意滾動條組件的更新操作,需要使用 $nextTick( ) 實現非同步

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 為表達全國各族人民對抗擊新冠肺炎疫情鬥爭犧牲烈士和逝世同胞的深切哀悼,國務院發佈公告, 決定2020年4月4日舉行全國性哀悼活動。 在此期間,全國和駐外使領館下半旗誌哀,全國停止公共娛樂活動。4月4日10時起,全國人民默哀3分鐘,汽車、火車、艦船鳴笛,防空警報鳴響。 這一天,我們看到幾乎所有的網頁、 ...
  • 今天在推特上看到一篇關於性能優化不錯的文章,是前蘋果開發人員寫的,翻譯了一下與大家分享 作為開發人員,良好的性能對於使我們的用戶感到驚喜和喜悅是無價的。iOS用戶具有很高的標準,如果你的應用程式反應很慢或在記憶體壓力下崩潰,他們將停止使用它,或者更糟糕的是,你的評論會很糟糕。 在過去的6年中,我在Ap ...
  • 哈嘍小伙伴們,愛說‘廢’話的Z又回來了,歡迎來到Super IT曾的博客時間,上一節說了字元串,面向對象以及json的知識,這一節我們繼續我們知識的海洋,一起奮鬥不禿頭!不足的歡迎提問留言。我發誓我真的沒有P圖😂,沒想到這個系列被小編看上了,從發佈這個系列起就都上熱門了,怪害羞的,哈哈讓人老臉一... ...
  • 摘要:通過學習快速認識JavaScript,熟悉JavaScript基本語法、視窗交互方法和通過DOM進行網頁元素的操作,學會如何編寫JS代碼,如何運用JavaScript去操作HTML元素和CSS樣式,JavaScript入門篇分為四個章節,能夠讓你快速入門,為JavaScript深入學習打下基礎 ...
  • 第3章 你也有控制權(DOM操作) 如何用JavaScript去操作HTML元素和CSS樣式,實現簡單的動態操作。 3-1 認識DOM 3-2 通過ID獲取元素 3-3 innerHTML 屬性 3-4 改變 HTML 樣式 3-5 顯示和隱藏(display屬性) 3-6 控制類名(classNa ...
  • 佈局的常用方法有幾下幾種 一,float佈局 float 屬性定義元素在哪個方向浮動。以往這個屬性總應用於圖像,使文本圍繞在圖像周圍,不過在 CSS 中,任何元素都可以浮動。 浮動元素會生成一個塊級框,而不論它本身是何種元素。 屬性值: float:left 元素向左浮動。 float:reght ...
  • JavaScript中 沒有 塊級作用域,“塊級作用域”中聲明的變數將被添加到 當前 的執行環境中 在JavaScript中,由for語句創建的變數,即使在for迴圈執行結束後,也依舊會存在於迴圈外部的執行環境中。 javascript function add(num1, num2) { var ...
  • 項目構建打包--webpack cnpm run build 打包完成後會提示你,不能在本地打開,必須啟用伺服器才能打開 而且生成了一個dist目錄 這個目錄就是可以發佈的目錄,只要放到伺服器上去即可 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...