gpt4 book ai didi

node.js - 当我通过 Express 发送 json 对象时,浏览器不显示选项卡 "raw | parsed"

转载 作者:太空宇宙 更新时间:2023-11-03 23:13:05 24 4
gpt4 key购买 nike

我正在按 Node 运行 Express 服务器,我看到了很多站点,当您通过浏览器打开这些站点中的 json 对象时,您会在右上角看到选项卡“raw | parsed”,您能告诉我,如何打开此选项吗?我的代码:

const express = require('express')

const app = express()

app.get('', (req, res) => {
res.send('<h1>Weather</h1>')
})

app.get('/help', (req, res) => {
res.send([{
name: 'Andrew'
}, {
name: 'Sarah'
}])
})

app.get('/about', (req, res) => {
res.send('<h1>About</h1>')
})

app.get('/weather', (req, res) => {
res.send({
forecast: 'It is snowing',
location: 'Philadelphia'
})
})

app.listen(3000, () => {
console.log('Server is up on port 3000.')
})

最佳答案

我相信如果您使用 Chrome,您需要此扩展程序。 json formatter

Firefox 已经安装了该功能。

关于node.js - 当我通过 Express 发送 json 对象时,浏览器不显示选项卡 "raw | parsed",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58937183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com