我参照这个页面的说明一步步进行 https://git.imooc.com/coding-285/vue-imooc-ebook-chapter/src/master/doc/chapter1/Chapter1.md ,服务器运行起来了,app的主页可以加载,但是点进某一本书的详情页面里面,目录、试读等信息就一直显示加载中…,点阅读的话也加载不出来内容。
nginx.conf中我加的是
server {
listen 8088;
server_name localhost;
root C:\Users\hello\Desktop\upload;
autoindex on;
location / {
add_header Access-Control-Allow-Origin *;
index index.html index.htm;
}
}
因为我把放有book和epub文件夹的upload放在桌面了,这么写有问题吗?