2.7 KiB
2.7 KiB
id, title, challengeType, forumTopicId, localeTitle
id | title | challengeType | forumTopicId | localeTitle |
---|---|---|---|---|
587d7fb1367417b2b2512bf1 | Serve JSON on a Specific Route | 2 | 301517 | 服务指定路由上的 JSON |
Description
/json
且返回数据是 JSON 格式的路由,你可以像之前那样通过app.get()
方法来做,然后在路由处理部分使用res.json()
方法返回 JSON 格式的数据,这个方法可以接收一个配置对象。这个方法会结束请求响应循环(request-response loop),然后返回数据。res.json()
将一个有效的 JavaScript 对象转化为字符串,然后会设置适当的头信息(headers)来告诉浏览器,这是一个 JSON 数据,最后返回给客户端进行处理。一个有效的对象通常是这种结构:{key: data}
。数据可以是数字、字符串、嵌套对象或数组。也可以是变量或者函数返回值,在这种情况下,会以它们的执行结果为基准,再转成字符串。
Instructions
/json
时,将对象{"message": "Hello json"}
作为 JSON 格式返回给客户端。然后在浏览器里输入完整的 URL,比如your-app-url/json
,就可以在屏幕上看到这个消息了。
Tests
tests:
- text: '服务端<code>/json</code>应该返回一个 JSON 对象<code>{"message": "Hello json"}</code>'
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/json'').then(data => { assert.equal(data.message, ''Hello json'', ''The \''/json\'' endpoint does not serve the right data''); }, xhr => { throw new Error(xhr.responseText); })'
Challenge Seed
Solution
/**
Backend challenges don't need solutions,
because they would need to be tested against a full working project.
Please check our contributing guidelines to learn more.
*/