2.4 KiB
2.4 KiB
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
bd7158d8c443edefaeb5bdff | 請求頭解析器微服務 | 4 | 301507 | request-header-parser-microservice |
--description--
構建一個 JavaScript 的全棧應用,在功能上與這個應用相似:https://request-header-parser-microservice.freecodecamp.rocks/。 可以採用下面的一種方式完成這個挑戰:
- 克隆 this GitHub repo 並在本地完成項目。
- 使用我們的 Replit 初始化項目來完成你的項目。
- 使用你選擇的網站生成器來完成項目, 並確保包含了我們 GitHub 倉庫的所有文件。
當完成本項目,請確認有一個正常運行的 demo 可以公開訪問。 然後將 URL 提交到 Solution Link
中。 此外,還可以將項目的源碼提交到 GitHub Link
中。
--hints--
提交自己的項目,而不是示例的 URL。
(getUserInput) => {
assert(
!/.*\/request-header-parser-microservice\.freecodecamp\.rocks/.test(
getUserInput('url')
)
);
};
向 /api/whoami
發送請求,返回一個 JSON 對象,這個JSON 對象應該含有存放 IP 地址的 ipaddress
鍵中。
(getUserInput) =>
$.get(getUserInput('url') + '/api/whoami').then(
(data) => assert(data.ipaddress && data.ipaddress.length > 0),
(xhr) => {
throw new Error(xhr.responseText);
}
);
向 /api/whoami
發送請求,返回一個 JSON 對象,這個 JSON 對象應該含有存放語言首選項的 language
鍵。
(getUserInput) =>
$.get(getUserInput('url') + '/api/whoami').then(
(data) => assert(data.language && data.language.length > 0),
(xhr) => {
throw new Error(xhr.responseText);
}
);
向 /api/whoami
發送請求,返回一個 JSON 對象,這個 JSON 對象應該含有存放(發送請求的)軟件的 software
鍵。
(getUserInput) =>
$.get(getUserInput('url') + '/api/whoami').then(
(data) => assert(data.software && data.software.length > 0),
(xhr) => {
throw new Error(xhr.responseText);
}
);
--solutions--
/**
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.
*/