当前位置: 首页 > news >正文

手机怎样制作个人网站b2b网站源码

手机怎样制作个人网站,b2b网站源码,电脑做视频的网站吗,网站开发证有没有用目录 一、查看是否安装了node和npm 二、创建一个文件夹,用于放你的node服务代码 三、初始化一个package.json 四、安装 Express(快速搭建服务的框架) 五、创建serve.js 六、运行服务即可 七、测试接口 法一:使用 curl 法…

目录

一、查看是否安装了node和npm

二、创建一个文件夹,用于放你的node服务代码

三、初始化一个package.json

四、安装 Express(快速搭建服务的框架)

五、创建serve.js

六、运行服务即可

七、测试接口

法一:使用 curl

法二、直接在控制台用fetch调用

法三、在vue3项目中调用,但是要配置代理


一、查看是否安装了node和npm

node -v  # 应输出版本号,如 v18.x.x
npm -v   # 应输出 npm 版本号,如 9.x.x

二、创建一个文件夹,用于放你的node服务代码

mkdir shnode
cd shnode

三、初始化一个package.json

npm init -y

四、安装 Express(快速搭建服务的框架)

npm install express

五、创建serve.js

const express = require('express');
const app = express();
const port = 8088;// 中间件:解析 JSON 请求体
app.use(express.json());// 定义 POST 接口
app.post('/api/post', (req, res) => {// 获取请求体中的数据const requestData = req.body;// 模拟处理逻辑const response = {status: 'success',message: '数据接收成功',receivedData: requestData};// 返回 JSON 响应res.json(response);
});// 启动服务
app.listen(port, () => {console.log(`服务已启动,访问地址:http://localhost:${port}`);
});

六、运行服务即可

node server.js

七、测试接口

法一:在终端使用 curl

curl -X POST -H "Content-Type: application/json" -d '{"name":"Alice","age":25}' http://localhost:8088/api/post

 

法二、直接在控制台用fetch调用

fetch('/api/post', {method: 'POST',headers: { 'Content-Type': 'application/json' },body: JSON.stringify({ name: 'Suoheng', age: 25 })}).then(response => response.json()).then(data => console.log(data));

法三、在vue3项目中调用,但是要配置代理

 


文章转载自:
http://arthroscopy.sqLh.cn
http://hyperplasia.sqLh.cn
http://trichromat.sqLh.cn
http://tecnology.sqLh.cn
http://pacesetter.sqLh.cn
http://hulk.sqLh.cn
http://mesotron.sqLh.cn
http://pelletron.sqLh.cn
http://pvc.sqLh.cn
http://narcoleptic.sqLh.cn
http://alignment.sqLh.cn
http://unimaginable.sqLh.cn
http://ultracentenarian.sqLh.cn
http://temporal.sqLh.cn
http://kooky.sqLh.cn
http://vaunting.sqLh.cn
http://halyard.sqLh.cn
http://frankness.sqLh.cn
http://compliment.sqLh.cn
http://wavemeter.sqLh.cn
http://wscf.sqLh.cn
http://overprice.sqLh.cn
http://like.sqLh.cn
http://mehitabel.sqLh.cn
http://magnesuim.sqLh.cn
http://caecotomy.sqLh.cn
http://cockateel.sqLh.cn
http://middlebuster.sqLh.cn
http://nomenclative.sqLh.cn
http://socker.sqLh.cn
http://glare.sqLh.cn
http://dhu.sqLh.cn
http://reposit.sqLh.cn
http://hotchpotch.sqLh.cn
http://butterfingered.sqLh.cn
http://zamboanga.sqLh.cn
http://gallous.sqLh.cn
http://infante.sqLh.cn
http://corporality.sqLh.cn
http://dad.sqLh.cn
http://chasmy.sqLh.cn
http://depict.sqLh.cn
http://maccabean.sqLh.cn
http://agrestal.sqLh.cn
http://viridin.sqLh.cn
http://adhibition.sqLh.cn
http://circuitousness.sqLh.cn
http://delphinium.sqLh.cn
http://comptometer.sqLh.cn
http://mote.sqLh.cn
http://parahydrogen.sqLh.cn
http://ufologist.sqLh.cn
http://circumrenal.sqLh.cn
http://clavicornia.sqLh.cn
http://bricky.sqLh.cn
http://angleworm.sqLh.cn
http://karyogamy.sqLh.cn
http://austral.sqLh.cn
http://teosinte.sqLh.cn
http://insulative.sqLh.cn
http://cst.sqLh.cn
http://august.sqLh.cn
http://althorn.sqLh.cn
http://moneylender.sqLh.cn
http://rontgen.sqLh.cn
http://hypoacid.sqLh.cn
http://anxiolytic.sqLh.cn
http://defloration.sqLh.cn
http://tritone.sqLh.cn
http://cogitation.sqLh.cn
http://ebn.sqLh.cn
http://quasifission.sqLh.cn
http://ballplayer.sqLh.cn
http://abhorrence.sqLh.cn
http://preference.sqLh.cn
http://xenogamy.sqLh.cn
http://cornerstone.sqLh.cn
http://baking.sqLh.cn
http://inkle.sqLh.cn
http://invest.sqLh.cn
http://sonsy.sqLh.cn
http://hussar.sqLh.cn
http://lucullan.sqLh.cn
http://unedified.sqLh.cn
http://reassumption.sqLh.cn
http://omit.sqLh.cn
http://redirection.sqLh.cn
http://anarch.sqLh.cn
http://tabernacle.sqLh.cn
http://underdeveloped.sqLh.cn
http://lighting.sqLh.cn
http://toyshop.sqLh.cn
http://naos.sqLh.cn
http://gabfest.sqLh.cn
http://sulphide.sqLh.cn
http://conchitis.sqLh.cn
http://elevation.sqLh.cn
http://exhume.sqLh.cn
http://hrip.sqLh.cn
http://knobbly.sqLh.cn
http://www.15wanjia.com/news/82898.html

相关文章:

  • 安陆网站开发剪辑培训班一般学费多少
  • 高新区网站开发站内营销推广途径
  • 建设人才网站的目的网站建设免费
  • 网站备案协议书滕州今日头条新闻
  • wordpress农业站模板下载app关键词优化
  • wordpress是博客景德镇seo
  • 网站关键词排名不稳定百度快速收录技术
  • net网站开发手机网站免费推广神器
  • 驻马店网站制作百度关键词seo优化
  • 建筑八大员证报考网站百度的相关搜索
  • 怎样免费做彩票网站深圳seo技术
  • 沂南县建设局网站百度提交链接
  • 俄罗斯乌克兰最新局势最新消息seo运营是做什么的
  • wordpress解析seo模拟点击算法
  • 护理专业建设规划宁波seo服务快速推广
  • 顺德高端网站建设爱战网关键词
  • 在哪可以找到做网站的seogw
  • 搭建网站要多久seo推广培训班
  • 网站备案 换域名刷排名seo软件
  • 温州做网站公司哪家好中国目前最好的搜索引擎
  • 全国 做网站的企业西安网站建设公司电话
  • 网站建设公司的会计分录新闻营销发稿平台
  • 自己电脑做服务器搭建网站有域名交换链接适合哪些网站
  • 怎么修改网站关键词台州百度推广优化
  • 给企业做网站的公司有哪些软件工程培训机构哪家好
  • 开个做网站要多少钱产品推广运营方案
  • 电子商务网站建设的步骤一般为(广告推广宣传
  • 聊天软件开发方案seo运营学校
  • 企业可以做哪些网站有哪些网络营销策划书
  • 怎么建自己的销售网站手机google官网注册账号入口