Web API 可以使用多種方式返回 JSON 數(shù)據(jù)。以下是一些常見的方法:
例如,使用 Python 的 Flask 框架可以這樣返回 JSON 數(shù)據(jù):
from flask import Flask, jsonify
app = Flask(__name__)
@app.route('/api/data')
def get_data():
data = {'name': 'John', 'age': 30}
return jsonify(data)
if __name__ == '__main__':
app.run()
Json
方法返回 JSON 數(shù)據(jù)。using Microsoft.AspNetCore.Mvc;
[Route("api/[controller]")]
[ApiController]
public class DataController : ControllerBase
{
[HttpGet]
public ActionResult<object> Get()
{
var data = new { name = "John", age = 30 };
return Json(data);
}
}
application/json
。例如,使用 Node.js 的 Express 框架可以這樣返回 JSON 數(shù)據(jù):
const express = require('express');
const app = express();
app.get('/api/data', (req, res) => {
const data = { name: 'John', age: 30 };
res.setHeader('Content-Type', 'application/json');
res.send(JSON.stringify(data));
});
app.listen(3000, () => {
console.log('Server is running on port 3000');
});
無論你選擇哪種方法,重要的是要確保服務(wù)器返回的響應(yīng)內(nèi)容類型是正確的,并且數(shù)據(jù)以 JSON 格式返回給客戶端。這樣客戶端就可以正確地解析和使用返回的 JSON 數(shù)據(jù)了。