1、单页面,head标签里增加属性: <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=3.5, user-scalable=yes"> /*注释*/ ...
分类:
移动开发 时间:
2021-01-07 11:54:59
阅读次数:
0
MySQL 存储过程 分类 编程技术 MySQL 5.0 版本开始支持存储过程。 存储过程(Stored Procedure)是一种在数据库中存储复杂程序,以便外部程序调用的一种数据库对象。 存储过程是为了完成特定功能的SQL语句集,经编译创建并保存在数据库中,用户可通过指定存储过程的名字并给定参数 ...
分类:
数据库 时间:
2021-01-07 11:48:52
阅读次数:
0
1.注册gitee账号 2.安装git 配置用户信息 git config --global user.name "your username" 配置用户邮箱信息 git config --global user.email "email.com" 3.进入git bash,输入ssh-keygen ...
分类:
其他好文 时间:
2021-01-06 12:36:18
阅读次数:
0
# step1 设置变量 SET @NAME = "测试测试"; # step2 sql语句加入预处理(要使用变量的地方 用“?”表示) PREPARE SQL1 FROM 'SELECT * FROM user WHERE name = ?'; # step3 执行(SQL1:表示要执行的SQL语 ...
分类:
数据库 时间:
2021-01-06 12:18:21
阅读次数:
0
命令执行&&代码执行 wafpass总结 代码执行 php常见命令执行函数 php代码 eval() assert() preg_replace call_user_func() call_user_func_array() create_function array_map() 系统命令代码 sy ...
分类:
Web程序 时间:
2021-01-06 11:40:50
阅读次数:
0
系统环境 centos7,php7.0 安装有关依赖 yum -y install gcc glibc-devel make ncurses-devel openssl-devel autoconf unixODBC unixODBC-devel socat 安装erlang运行环境 wget ht ...
分类:
Web程序 时间:
2021-01-06 11:39:23
阅读次数:
0
默认的config #user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/ngi ...
分类:
其他好文 时间:
2021-01-05 11:39:49
阅读次数:
0
一、得到镜像文件 二、解压压缩包和解锁文件夹 把镜像里的压缩包拖拽到桌面 命令行解压VMwareTools压缩包 得到有锁的文件夹 解锁文件夹得到读写权限 输入命令:sudo chown -R $USER 文件夹 例子:sudo chown -R $USER /home/wxm/user,就可以将u ...
分类:
系统相关 时间:
2021-01-05 11:35:52
阅读次数:
0
cube.js 的认证以及授权是基于security context 的,以下是参考图 简单说明 cube.js 是基于jwt token 处理的,同时关于用户的信息是在存储在u 中的,同时可以通过USER_CONTEXT 访问 同时authInfo 变量可以在多租户中方便的使用 参考u 信息 { ...
分类:
Web程序 时间:
2021-01-05 11:20:37
阅读次数:
0
package mainimport ( "os/exec" "syscall")// open opens the specified URL in the default browser of the user.func main() { // 无GUI调用 cmd := exec.Comman ...