🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
~~~ const http = require('http'); var data = { name:"chengchao" } const server = http.createServer((req,res)=>{ res.writeHead(200,{ 'Content-Type':'application/json', 'Access-Control-Allow-Origin': '*', 'Access-Control-Allow-Methods': 'GET, POST' }) res.end(JSON.stringify(data)); }) server.listen(8080) ~~~