Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.7k views
in Technique[技术] by (71.8m points)

请问我这个express,用fetch怎么请求不到,谢谢

const express = require('express')
const cors = require('cors')
const app=express()
app.use(cors())
app.use(express.static('public'))
app.get('/test',function (req, res) {
  console.log("31321")
  res.send('77')
  }
)
app.listen(3005,function (){console.log("localhost:3005")})

在chrome里请求并打印,结果undefined

fetch('localhost:3005/test').then(res=>console.log(res))

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

浏览器直接打开 localhost:3005/test 看看有没有数据 或者把send换成render看看


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...