获取贝壳新房列表

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();
相关推荐
程序员黑豆10 分钟前
Java类型推断完全指南:从var到菱形运算符,掌握使用限制与最佳实践
java·前端·ai编程
To_OC42 分钟前
踩了个 TS 的坑之后,我终于把 type 和 interface 掰明白了
前端·react.js·typescript
GreenTea1 小时前
深度解读 Anthropic 多智能体报告:更强的模型 ≠ 更好的协调
前端·后端·算法
浮生望1 小时前
前端API工程化:用 Mock 数据与 Axios 配置实现独立于后端的并行开发
前端
万少2 小时前
给 DeepSeek Harness 装个"应用商店":一条命令,595 个插件随你逛
前端·javascript·后端
波波0072 小时前
C# 15 重磅新特性: 带标签 break 与 continue:重新定义嵌套循环控制流
服务器·前端·c#
Brown.alexis3 小时前
es6知识点1-自备使用
前端·ecmascript·es6
小爬的老粉丝4 小时前
JavaScript 纯前端预览 WPS:先识别容器,再路由解析器
前端·javascript·wps
计算机魔术师4 小时前
新兴多智能体系统的模式与问题
前端
用户059540174465 小时前
AI Agent 上下文污染踩坑实录:用 pytest + Redis 揪出 3 类记忆串号 bug,排查 6 小时
前端·css