获取贝壳新房列表

1、获取本页新房列表

javascript 复制代码
// 贝壳新房名称提取,自动复制到剪贴板
const names = Array.from(document.querySelectorAll('.resblock-name .name, .building-wrapper .name'))
  .map(el => el.textContent.trim());
copy(names.join('\n'));
console.log('✅ 已复制以下内容到剪贴板:\n' + names.join('\n'));

2、获取所有页的新房列表自动翻下一页,带暂停导出按钮

javascript 复制代码
// === 修复版:无行号污染 + 控制台纯文本输出 + 页面按钮 ===
let collectedData = [];
let isRunning = true;
let pageCount = 0;

// 1. 创建页面控制按钮
function createControlPanel() {
  const panel = document.createElement('div');
  panel.id = 'fang-collector-panel';
  panel.style.cssText = `
    position: fixed; top: 10px; right: 10px; z-index: 99999;
    background: #fff; padding: 10px; border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2); display: flex; gap: 8px;
  `;

  const pauseBtn = document.createElement('button');
  pauseBtn.id = 'pause-btn';
  pauseBtn.textContent = '暂停采集';
  pauseBtn.style.cssText = `
    padding: 6px 12px; border: none; border-radius: 4px;
    background: #ff9500; color: #fff; cursor: pointer;
  `;
  pauseBtn.onclick = () => {
    isRunning = !isRunning;
    pauseBtn.textContent = isRunning ? '暂停采集' : '继续采集';
    pauseBtn.style.background = isRunning ? '#ff9500' : '#4CAF50';
    if (isRunning) {
      console.log('▶️ 继续采集...');
      goToNextPage();
    } else {
      console.log('⏸️ 已暂停');
    }
  };

  const exportBtn = document.createElement('button');
  exportBtn.textContent = '导出Excel';
  exportBtn.style.cssText = `
    padding: 6px 12px; border: none; border-radius: 4px;
    background: #2196F3; color: #fff; cursor: pointer;
  `;
  exportBtn.onclick = () => exportToCSV();

  panel.appendChild(pauseBtn);
  panel.appendChild(exportBtn);
  document.body.appendChild(panel);
}

// 2. 采集当前页数据,同时用纯文本输出(避免控制台行号污染)
function collectCurrentPage() {
  const listItems = document.querySelectorAll('.resblock-list');
  const hotItems = document.querySelectorAll('.building-list-item');
  const currentPageNames = [];

  listItems.forEach(item => {
    const name = item.querySelector('.resblock-name .name')?.textContent.trim();
    if (!name) return;
    currentPageNames.push(name);
    collectedData.push({
      名称: name,
      均价: item.querySelector('.main-price .number')?.textContent.trim() + ' ' + (item.querySelector('.main-price .desc')?.textContent.trim() || ''),
      总价范围: item.querySelector('.second')?.textContent.trim() || '',
      户型: item.querySelector('.resblock-room')?.textContent.trim().replace(/\s+/g, ' ') || '',
      地址: item.querySelector('.resblock-location')?.textContent.trim() || '',
      标签: Array.from(item.querySelectorAll('.resblock-tag span')).map(t => t.textContent.trim()).join(', '),
      来源: '主列表'
    });
  });

  hotItems.forEach(item => {
    const name = item.querySelector('.building-wrapper .name')?.textContent.trim();
    if (!name) return;
    currentPageNames.push(name);
    collectedData.push({
      名称: name,
      均价: item.querySelector('.price-wrapper .price')?.textContent.trim() + ' ' + (item.querySelector('.price-wrapper .unit')?.textContent.trim() || ''),
      总价范围: '',
      户型: '',
      地址: '',
      标签: `${item.querySelector('.building-wrapper .type')?.textContent.trim()}, ${item.querySelector('.building-wrapper .status')?.textContent.trim()}`,
      来源: '热门楼盘'
    });
  });

  // 用console.log一次性打印整页所有名称,控制台只会输出文本,不会带行号
  console.log(`\n===== 第 ${pageCount + 1} 页楼盘 =====`);
  console.log(currentPageNames.join('\n'));
  console.log(`✅ 第 ${pageCount + 1} 页采集完成,当前共收集 ${collectedData.length} 个楼盘`);

  pageCount++;
}

// 3. 自动翻页
function goToNextPage() {
  if (!isRunning) return;

  collectCurrentPage();
  const nextBtn = document.querySelector('.page-box .next:not(.disabled)');
  if (nextBtn) {
    console.log('➡️ 点击下一页...\n');
    nextBtn.click();
    setTimeout(goToNextPage, 1500);
  } else {
    console.log('✅ 已到达最后一页,采集完成!');
    document.getElementById('pause-btn').textContent = '采集完成';
    document.getElementById('pause-btn').disabled = true;
    exportToCSV();
  }
}

// 4. 导出CSV
function exportToCSV() {
  if (collectedData.length === 0) {
    console.log('❌ 没有采集到任何数据');
    return;
  }
  const headers = Object.keys(collectedData[0]);
  const rows = collectedData.map(row => 
    headers.map(key => `"${(row[key] || '').replace(/"/g, '""')}"`).join(',')
  );
  const csvContent = '\uFEFF' + [headers.join(','), ...rows].join('\n');
  const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' });
  const url = URL.createObjectURL(blob);
  const link = document.createElement('a');
  link.href = url;
  link.download = `贝壳新房数据_${new Date().toLocaleDateString()}.csv`;
  document.body.appendChild(link);
  link.click();
  document.body.removeChild(link);
  URL.revokeObjectURL(url);
  console.log(`📥 已导出 ${collectedData.length} 条数据到CSV文件!`);
}

// 5. 启动
createControlPanel();
console.log('🚀 采集开始!页面右上角有【暂停/继续】和【导出Excel】按钮');
goToNextPage();
相关推荐
threelab8 小时前
Three.js 动态旋转同心圆着色器 | 三维可视化效果
开发语言·javascript·着色器
武藤一雄8 小时前
WPF:MessageBox系统消息框
前端·microsoft·c#·.net·wpf
一 乐8 小时前
茶叶商城|基于springboot + vue茶叶商城系统(源码+数据库+文档)
java·数据库·vue.js·spring boot·论文·毕设·茶叶商城系统
吴声子夜歌9 小时前
Vue3——Pinia状态管理
javascript·vue.js·pinia
是上好佳佳佳呀10 小时前
【前端(十)】CSS 过渡与动画笔记
前端·css·笔记
用户新15 小时前
V8引擎 精品漫游指南--Ignition篇(下 一) 动态执行前的事情
前端·javascript
@PHARAOH17 小时前
WHAT - GitLens vs Fork
前端
yqcoder17 小时前
前端性能优化:如何减少重绘与重排?
前端·性能优化
洋子18 小时前
Yank Note 系列 13 - 让 AI Agent 进入笔记工作流
前端·人工智能