有没有办法识别网站中使用的是哪个 Web 框架?
每当我遇到一个可爱网站时,我总是很好奇它的开发人员使用了哪个Web框架?
作为网络开发的新手,查看页面源代码并不能提供任何线索。
有什么方法可以获取这些信息吗?如果可能的话,也许借助一点 Ruby 的魔力,我可以弄清楚这样的事情:我最喜欢的网站、音频/视频网站等使用最多/最少的框架是哪个。
Whenever I come across a cute website, I am always curious to know which web framework was used by its developers?
Being a novice in web development, a look at the page source doesn't give any clue.
Any way(s) to get this information? If possible, may be with a bit of Ruby magic, I can figure out things like: which is the most/least used framework for my favorite sites, audio/video heavy sites, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有时您可以根据 URL 模式或站点中包含的脚本...但这并不是 100% 的预测器。您可以编写一个完全屏蔽框架并简单地将 HTML/JS 传递给浏览器的网站
Sometimes you can based on the URL patterns, or which scripts are included in the site ... but it's not a 100% predictor. You can write a site that completely masks the framework and simply delivers HTML/JS to the browser