💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` //安装依赖:npm install body-parser express --save var express = require("express"); //主要的部分start var bodyParser = require('body-parser');//解析,用req.body获取post参数 var app = express(); app.use(bodyParser.json()); app.use(bodyParser.urlencoded({extended: false})); //主要的部分end app.post("/",function(req,res){ console.log(JSON.stringify(req.body)); res.end(); }) ```