对于一个网展来说,index.html是其第一个页面,也是根页面,如何通过Crow来加载index.html呢。
Crow:静态资源使用举例-CSDN博客
讲述了静态资源的使用,也就是通常存饭html,css,jpg文件的地方
当然index.html也会放在这个目录,但通常是放在static的根目录,其他资源会根据资源类型放在子目录中
比如可以通过如下方式放置文件
$ tree static
static
├── img
│ └── goodday.jpg
└── index.html文章来源:https://www.toymoban.com/news/detail-812282.html
<html>
<body>
<h1>Hello world</h1>
<img src="/static/img/goodday.jpg" alt="good day" style="width: 500px;">
</body>
</html>
文章来源地址https://www.toymoban.com/news/detail-812282.html
//index.cpp
#include <crow.h>
using namespace std;
int main()
{
crow::SimpleApp app;
app.port(8888).multi
到了这里,关于Crow:设置网站的index.html的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!