postman不要返回html页面,接口测试问题,node写的后端接口,启动项目,浏览器能看到返回的字符串,postman测试返回一个错误的html代码?...

练习前后端数据请求的时候,先用前端请求了网上免费接口,没问题数据拿到了。

测试本地后端接口,localhost:3000/users (这个是express项目生成时自带的router)

1、user.js

var express = require('express');

var router = express.Router();

/* GET users listing. */

router.get('/', function(req, res, next) {

res.send('12344');

});

module.exports = router;

2、app.js(截取的,就是express项目生成时的代码)

var usersRouter = require('./routes/users');

app.use('/users', usersRouter);

3、用npm start启动项目,浏览器访问localhost:3000/users可以显示send的字符串

postman不要返回html页面,接口测试问题,node写的后端接口,启动项目,浏览器能看到返回的字符串,postman测试返回一个错误的html代码?..._第1张图片

4、用postman测试localhost:3000/user接口,会返回一个显示错误信息的html结构

bVbFwyV

你可能感兴趣的:(postman不要返回html页面,接口测试问题,node写的后端接口,启动项目,浏览器能看到返回的字符串,postman测试返回一个错误的html代码?...)