眼睛大皮带

文章
3
资源
0
加入时间
3年0月28天

nginx 模糊匹配location写法

nginx的location写法中实现模糊匹配如下规则将匹配以/test开头的url,如http://ip:port/test.html,http://ip:port/test2.php等 location ~ /test { root /u01/soft/UCMSServer/tomcat/webapps; }...

vue和node.js简单的整合记录

vue init webpack test-nodecd test-nodenpm installnpm install express --save安装mysql和navicat,新建数据库person,新建表user,具体如下: 随便插入数据:{useranme:sa,password:123456}npm install vue-resource --save...