文章详情

返回首页

CF上的Workers搭建vps计算器

分享文章 作者: Ws01 创建时间: 2025-11-24 📝 字数: 10,268 字 👁️ 阅读: 9 次

addEventListener('fetch', event => {
event.respondWith(handleRequest(event.request));
});

async function handleRequest(request) {
const html = `

📅VPS剩余价值计算器

📅VPS剩余价值计算器

⚡mjj祖训:一邮一鸡!不买实名鸡、高溢价鸡和LXC小鸡,慎买预售鸡。
`;

return new Response(html, {
headers: { "content-type": "text/html;charset=UTF-8" },
});
}