码迷,mamicode.com
首页 >  
搜索关键字:require    ( 6509个结果
koa2-request node.js 请求http请求
koa2-request koa2的request库封装,支持async和await写法 安装 npm install koa2-request 使用方法 var koa2Req = require('koa2-request'); app.use(async(ctx, next) => { //  ...
分类:Web程序   时间:2021-01-27 13:21:22    阅读次数:0
python为Gitalk自动创建Issue
背景:gitalk需要人工访问文章页才能触发创建issue 其实有个更简便的方式,当我们push代码到github时,可以利用github action的自动化流程自动执行下面的python脚本来创建issue,在编写Github Action时,设定触发条件为push,详细的yml脚本内容为: c ...
分类:编程语言   时间:2021-01-26 12:36:45    阅读次数:0
building qtqml requires python
编译Qt5.14.2的qtdeclarative发生错误:building qtqml requires python,系统是ubuntu18.04,安装有python3,修复需要做2步: 1.用nano或者vi修改别名文件 $ vi .bashrc 添加别名 alias python=python ...
分类:编程语言   时间:2021-01-25 11:14:13    阅读次数:0
再探Lua的require
我们之前实现了自己版本的require,首先认定为lua模块尝试加载,如果加载不成功则认定为C模块继续进行加载。实际上,在Lua内部,是通过searchers来区分不同的加载方式。Lua一共有4种searchers,用来加载lua模块的和加载C模块的分别是第2个和第3个。第1个searcher叫做p ...
分类:其他好文   时间:2021-01-25 11:00:15    阅读次数:0
9.3拦截请求
/**<!--more--> * 通过重载,配置如果通过拦截器保护请求 * @param http * @throws Exception */ @Override protected void configure(HttpSecurity http) throws Exception {// su ...
分类:其他好文   时间:2021-01-21 11:00:01    阅读次数:0
Puppeteer--其它功能
1.Page.exposeFunction() Page.exposeFunction,这个 API 用来在页面注册全局函数,非常有用: 在比如给 window 对象注册 readfile 全局函数: const puppeteer = require('puppeteer'); const fs ...
分类:其他好文   时间:2021-01-19 12:20:37    阅读次数:0
文件包含——伪协议
伪协议常常用于文件包含漏洞之中。 在php中能够造成文件包含的函数有include、require、include_once、require_once、highlight_file、show_source、file_get_contents、fopen、file、readfile 0x01 函数 1 ...
分类:其他好文   时间:2021-01-18 11:07:57    阅读次数:0
nginx - fastcgi param
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;#脚本文件请求的路径 fastcgi_param QUERY_STRING $query_string; #请求的参数;如?app=123 fastcgi_param R ...
分类:其他好文   时间:2021-01-18 10:38:12    阅读次数:0
gocloc 代码统计算法
gocloc是一个支持代码统计的golang 包,同时也可以基于cli 运行 参考使用 环境准备 go.mod module demoapp ? go 1.15 ? require github.com/hhatto/gocloc v0.3.3 main.go package main ? impo ...
分类:编程语言   时间:2021-01-16 12:02:21    阅读次数:0
export报错SyntaxError: Unexpected token export
const defaultFiles = [ ] export default defaultFiles // 使用 const defaultFiles = require('./src/utils/defaultFiles ') //编译时报错:SyntaxError: Unexpected t ...
分类:其他好文   时间:2021-01-14 11:28:14    阅读次数:0
6509条   上一页 1 ... 12 13 14 15 16 ... 651 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!