* fix: Add Api challenges - Chinese translation * fix: md formatting * fix: md formatting
1.7 KiB
1.7 KiB
id, title, localeTitle, challengeType
id | title | localeTitle | challengeType |
---|---|---|---|
587d7fb0367417b2b2512bf0 | Serve Static Assets | 服务静态资产 | 2 |
Description
express.static(path)
来实现此功能,其中参数是包含资产的文件夹的绝对路径。如果您不知道中间件是什么,请不要担心。我们稍后会详细讨论它。基本上,中间件是拦截路由处理程序,添加某种信息的函数。需要使用app.use(path, middlewareFunction)
方法app.use(path, middlewareFunction)
。第一个路径参数是可选的。如果您没有通过它,将为所有请求执行中间件。 0
使用app.use()
为所有请求安装express.static()
中间件。 assets文件夹的绝对路径是__dirname + /public
。 0
现在,您的应用应该能够提供CSS样式表。从公共文件夹外部将显示挂载到根目录。你的头版现在应该看起来好一点!
Instructions
Tests
tests:
- text: 您的应用应该从<code>/public</code>目录提供资产文件
testString: 'getUserInput => $.get(getUserInput(''url'') + ''/style.css'').then(data => { assert.match(data, /body\s*\{[^\}]*\}/, ''Your app does not serve static assets''); }, xhr => { throw new Error(xhr.responseText); })'
Challenge Seed
Solution
// solution required