2019-05-06 07:31:26 -04:00
|
|
|
---
|
|
|
|
id: 587d7fb0367417b2b2512bef
|
2020-12-16 00:37:30 -07:00
|
|
|
title: 服务 HTML 文件
|
2019-05-06 07:31:26 -04:00
|
|
|
challengeType: 2
|
2020-09-07 13:40:31 +08:00
|
|
|
forumTopicId: 301516
|
2021-01-13 03:31:00 +01:00
|
|
|
dashedName: serve-an-html-file
|
2019-05-06 07:31:26 -04:00
|
|
|
---
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --description--
|
|
|
|
|
|
|
|
我们可以使用`res.sendFile(path)`方法来响应一个文件。你可以把响应一个文件的方法放到路由处理程序中:`app.get('/', ...)`。在后台,这个方法会根据你想发送的文件的类型,设置适当的 headers 头信息来告诉浏览器如何处理它。然后它会读取并发送文件。此方法需要文件的绝对路径。我们建议你使用 Node.js 的全局变量`__dirname`来计算出这个文件的绝对路径。
|
2019-10-14 20:29:55 +01:00
|
|
|
|
|
|
|
```js
|
|
|
|
absolutePath = __dirname + relativePath/file.ext
|
|
|
|
```
|
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --instructions--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
要发送的文件是`/views/index.html`。在 app 中点击 "Show Live" 按钮,你会看到一个大的 HTML 标题(以及我们稍后将使用的表单…),目前它们还没有任何样式。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
**注意:**你可以编辑上一个挑战的解题代码,或者创建一个新的挑战。如果你重写了之前的代码,请注意 Express 会从上到下重新解析对应的路由方法。它执行第一个匹配的路由处理方法。你必须注释掉前面的代码,否则服务器还是响应之前的字符串。
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --hints--
|
2019-05-06 07:31:26 -04:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
app 应该响应 views/index.html 文件
|
2019-05-06 07:31:26 -04:00
|
|
|
|
|
|
|
```js
|
2020-12-16 00:37:30 -07:00
|
|
|
(getUserInput) =>
|
|
|
|
$.get(getUserInput('url')).then(
|
|
|
|
(data) => {
|
|
|
|
assert.match(
|
|
|
|
data,
|
|
|
|
/<h1>.*<\/h1>/,
|
|
|
|
'Your app does not serve the expected HTML'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
(xhr) => {
|
|
|
|
throw new Error(xhr.responseText);
|
|
|
|
}
|
|
|
|
);
|
2019-05-06 07:31:26 -04:00
|
|
|
```
|
2020-08-13 17:24:35 +02:00
|
|
|
|
2020-12-16 00:37:30 -07:00
|
|
|
# --solutions--
|
|
|
|
|
2021-01-13 03:31:00 +01:00
|
|
|
```js
|
|
|
|
/**
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
```
|