Skip to content

有人解释一下RSS路由到底是个什么意思起个什么作用吗。 #11642

Answered by HPDell
Squirre17 asked this question in Q&A
Discussion options

You must be logged in to vote

路由是网页开发中的常见名词,简单的说,就是对一个匹配的URL指定什么样的处理。比如,我现在访问

https://rsshub.app/github/repos/DIYgod/

浏览器知道往服务器 rsshub.app 发送 https 请求,请求的资源地址是 /github/repos/DIYgod/ 。服务器收到这个请求,它怎么处理呢?此时服务器找了一下,发现由一个路由声称它要处理发到这个地址的请求,然后服务器就让这个路由处理了。根据这个路由指定的处理模块,它就获取了 DIYgod 这个用户下面的所有仓库,生成对应的 RSS 页面,让服务器返回给发来请求的浏览器。

建议可以看一下 express.js 等框架的文档

Replies: 2 comments

Comment options

You must be logged in to vote
0 replies
Comment options

You must be logged in to vote
0 replies
Answer selected by TonyRL
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants