Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 findlib 中运行opam install cohttp并没有为我提供。cohttp.lwt我是否缺少使用 lwt 支持安装的命令行选项?
opam install cohttp
cohttp.lwt
lwt是 的可选依赖项cohttp。所以要激活 lwt 支持,你只需要安装它:
lwt
cohttp
opam install ssl lwt cohttp
备注:您可以稍后安装 lwt,OPAM 将使用正确的选项重新编译 cohttp。
除了lwt包,还需要安装ssl包:
ssl
如果服务器过滤,是否可以发送 XSS 攻击,但 <{space}tag> 允许并发送回?似乎浏览器不将 <tag> 作为 HTML 标记 :(
服务器只更改输入。(点)到 、(逗号)和过滤器
谢谢。