09. 带你实现商品搜索、商品分类检索功能

41 字约 1 分钟读完3003 次阅读更新于 2026/5/3

去除 URL 参数 JS 方法

const clearPathParam = () => {
  let url = location.href
  url = url.replace(/(\?|#)[^'"]*/, '');           //去除参数
  window.history.pushState({},0, url);
}

前台框架 Front.vue

前台商品列表页面 Goods.vue