日常问题---We‘re sorry but xxx doesn‘t work properly without JavaScript enabled. Please enable it to....

问题:

       We're sorry but project-vue3 doesn't work properly without JavaScript enabled. Please enable it to continue.

       (很抱歉,没有启用JavaScript,project-vue3无法正常工作。请使其继续。)

日常问题---We‘re sorry but xxx doesn‘t work properly without JavaScript enabled. Please enable it to....

日常问题---We‘re sorry but xxx doesn‘t work properly without JavaScript enabled. Please enable it to....

原因:

      主要原因是nginx配置异常,没有正确配置后端服务代理地址。

解决:

      需要在nginx中配置转发访问后端的具体地址。

#后端服务代理配置
location ^~ /api/ { 	#api:后端服务代理路径(根据项目实际情况配置)
	proxy_pass http://localhost:3000/;  #后端服务真实地址
}

日常问题---We‘re sorry but xxx doesn‘t work properly without JavaScript enabled. Please enable it to....

上一篇:老黄历:编码式的统治策略


下一篇:【Matlab编程】哈夫曼编码的Matlab实现