开始写后端工程: cnpm i express body-parser jwt-simple cors express-session connect-mongo mongoose -S ...
分类:
其他好文 时间:
2020-06-19 23:10:37
阅读次数:
92
FTP(File Transfer Protocol,文件传输协议) 是 TCP/IP 协议组中的协议之一。FTP协议包括两个组成部分,其一为FTP服务器,其二为FTP客户端。其中FTP服务器用来存储文件,用户可以使用FTP客户端通过FTP协议访问位于FTP服务器上的资源。 使用FTP连接工具进行远 ...
分类:
其他好文 时间:
2020-06-19 18:11:01
阅读次数:
79
vue项目打包后的文件需要在本地运行,这里介绍两种方法 (一)搭建express本地服务器 1、安装express-generator npm i express-generator -g 2、创建一个express项目 express my-express-project 3、进入项目目录 cd ...
分类:
其他好文 时间:
2020-06-19 16:31:58
阅读次数:
192
手动下载安装PHP,比较快速,但是操作很繁琐,可能后续使用的时候,还会遇到其他的问题。 Windwos提供了WebPI来进行安装。 1、使用Web Platform Installer安装,下载WebPI https://www.microsoft.com/web/downloads/platfor ...
分类:
Web程序 时间:
2020-06-19 14:11:03
阅读次数:
61
对象 计数器 说明 IIS Global Active Flushed Entries Active Flushed Entries 是缓存文件句柄,当前传输全部完成后将关闭此句柄。IIS Global 对象。 Web Anonymous Users/Sec 用户通过 Web 服务进行的匿名连接数。 ...
摘自 :https://blog.csdn.net/ssdnif/article/details/103856283 官方提供的配置<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <rewrite> < ...
分类:
其他好文 时间:
2020-06-18 10:32:24
阅读次数:
48
http://www.luyixian.cn/javascript_show_169354.aspx 按照网上的教程试了多次,处理了各种结果后还有报错, 最后的报错是cant find module “imageinfo”,这时候才发现 原来这个东西还要引入imageinfo这个, npm inst ...
分类:
Web程序 时间:
2020-06-17 10:47:43
阅读次数:
92
let mysql=require(`mysql`) //引入相应依赖module.exports={ //导出对象 // config:{ host:`localhost`, //主机名 user:'root', //用户名 password:`123`, //密码 port:3306, //端口 ...
分类:
数据库 时间:
2020-06-16 23:52:25
阅读次数:
108
const mysql=require(`mysql`)module.exports.sqlpoll=function () { let pool={ config:{ host:`localhost`, user:`root`, password:`123`, port:3306, databas ...
分类:
数据库 时间:
2020-06-16 23:46:30
阅读次数:
154
const express=require(`express`)const morgan=require(`morgan`)const serveFavicon=require(`serve-favicon`)const bodyParser=require(`body-parser`)const ...
分类:
其他好文 时间:
2020-06-16 23:12:23
阅读次数:
58