请问我的代码本地运行是没问题的但布置到nginx就出现
来源:15-4 项目构建和部署

cpen5
2020-01-19
Cannot read property ‘getState’ of undefined 错误
server {
listen 8000;
server_name localhost;
location /dianping {
root /var/www/html/web;
index index.html;
try_files $uri /dianping/index.html;
}
location /mock {
root /var/www/html/web/dianping;
}
}
谢谢
写回答
1回答
-
cpen5
提问者
2020-01-19
找到原因啦.store没设好
00
相似问题