"use client"; import React, { useEffect } from "react"; export default function Home() { useEffect(() => { const b_did = localStorage.getItem("b_did"); if (!b_did) { const temDid = Date.now() + "_" + Math.random().toString(36).substring(2, 9); localStorage.setItem("b_did", temDid); } //访问量埋点 const handleEvent = async () => { const userId = localStorage.getItem("b_did"); await fetch("/api/Raven_IQ_test_visit/create", { method: "POST", headers: { "Content-Type": "application/json", }, body: JSON.stringify({ user_id: userId, v_type: 0, ct: Math.floor(Date.now() / 1000), }), }); }; handleEvent(); }, []); return (

瑞文国际标准智商测试

每年近1000万人参与
被广泛应用于智力分析和职业选择等领域

36题

5-8分钟

立即开始测试
); }