摘要:        
1、用alt+p命令,打开sftp。 2、进入远程目录 cd /var/html/tqdlpc 3、执行lcd命令,定位本地目录 sftp> lcd E:\国庆节20190922\天祺电力\天祺2代单一指令\tqdlweb\dist 4、 执行命令 sftp> put -r ./* 就大功告成了    
阅读全文
 
        posted @ 2020-03-31 15:43
qqhfeng16
阅读(3629)
推荐(0)
 
		
    
        
        
摘要:        
bootstrap 用container类,那么左右两侧是不到边的,总是空出一部分。 用container-fluid类,可以扩展到两边。 container 类和container-fluid类的区别体现在是否有随视口宽度改变的margin存在。    
阅读全文
 
        posted @ 2020-03-30 16:45
qqhfeng16
阅读(1261)
推荐(0)
 
		
    
        
        
摘要:        
1)req.query (查询get请求中的参数) GET /shoes?order=desc&shoe[type]=converse&shoe[color]=blue req.query.order // =>'desc' req,query.shoe.type // =>'converse' (    
阅读全文
 
        posted @ 2020-03-29 17:49
qqhfeng16
阅读(765)
推荐(0)
 
		
    
        
        
摘要:        
要想知道每个数据库的大小的话,步骤如下: 1、进入information_schema 数据库(存放了其他的数据库的信息) use information_schema; 2、查询所有数据的大小: select concat(round(sum(data_length/1024/1024),2),'    
阅读全文
 
        posted @ 2020-03-28 21:12
qqhfeng16
阅读(594)
推荐(0)
            
        
        
        posted @ 2020-03-28 21:10
qqhfeng16
阅读(241)
推荐(0)
 
		
    
        
        
摘要:        
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>网摘保存提示</title> <link type="text/css" href="/css/wz_new.css" rel="Stylesheet" /> <meta ht    
阅读全文
 
        posted @ 2020-03-26 11:19
qqhfeng16
阅读(289)
推荐(0)
 
		
    
        
        
摘要:        
const mytools = require("./mytools"); const mynet = require('net'); const mysql = require('mysql') // 使用 createPool 建立连接池 var mysqlpool = mysql.create    
阅读全文
 
        posted @ 2020-03-25 19:34
qqhfeng16
阅读(574)
推荐(0)
 
		
    
        
        
摘要:        
<%-- BeginRegion Page Settings --%> <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Editors_Validation_HowToRaiseVa    
阅读全文
 
        posted @ 2020-03-21 22:32
qqhfeng16
阅读(250)
推荐(0)
            
        
        
摘要:        
方法/步骤 打开终端窗口,输入mysql -uroot -p,我们进入mysql。 输入SELECT NOW(); 查看当前mysql显示时间,和我们的实际时间进行核对一下。 SELECT CURTIME(); 也可以显示时间,但是不完整。 SHOW VARIABLES LIKE "%time_zo    
阅读全文
 
        posted @ 2020-03-21 16:05
qqhfeng16
阅读(651)
推荐(0)
 
		
    
        
        
摘要:        
USE mysql;SELECT * FROM mysql.proc WHERE db='qhf';    
阅读全文
 
        posted @ 2020-03-20 16:51
qqhfeng16
阅读(410)
推荐(0)