码迷,mamicode.com
首页 >  
搜索关键字:external links module 友情链接模块    ( 13659个结果
Nginx实现负载均衡&Nginx缓存功能(转)
目录 一、Nginx是什么 二、Nginx实现反向代理 2.1 正向代理和反向代理 2.2 nginx实现反向代理 2.2.1 proxy_pass配置 2.2.1.1ngx_http_rewrite_module模块 2.2.2 proxy_set_header配置 2.3 nginx实现负载均衡 ...
分类:其他好文   时间:2020-07-18 19:51:41    阅读次数:73
rmmod: chdir(/lib/modules): No such file or directory 解决方法
实验环境:linux-3.4.2 busybox-1.20.0 问题描述: 学习驱动开发时,使用rmmod卸载已经安装成功的驱动模块时出现了rmmod: chdir(/lib/modules): No such file or directory错误提示 解决方法: 报错之后第一反应怀疑是不是驱动模 ...
分类:其他好文   时间:2020-07-18 11:29:57    阅读次数:95
Ant-design中使用jQuery
步骤一 webpack 配置中添加ProvidePlugin插件,congfig/webpack.config.js: module.exports = function (webpackEnv) { plugins: [ new webpack.ProvidePlugin({ $: 'jquery ...
分类:Web程序   时间:2020-07-18 00:58:22    阅读次数:169
微信小程序-服务器返回数据中包含有\n换行符失效问题解决方案
新建filter.wxs文件,文件内容如下 var format = function (text) { if (!text) { return } var reg = getRegExp('\\\\n', 'g') return text.replace(reg,'\n')} module.exp ...
分类:微信   时间:2020-07-17 19:33:34    阅读次数:243
AttributeError: module 're' has no attribute 'search'
命名py脚本时,不要与python预留字,模块名等相同,即Python文件名不要使用Python系统库的名字,就是因为使用了Python系统库的名字,所以在编译的时候才会产生.pyc文件。正常的Python文件在编译运行的时候是不会产生.pyc文件的! 这类问题的解决方法则是:更改python脚本的 ...
分类:其他好文   时间:2020-07-17 19:27:07    阅读次数:76
nginx: https
1、编译 ./configure --prefix=/usr/local/nginx-1.8\ --with-http_stub_status_module\ (统计数据查看) --with-pcre=/opt/install/nginx/pcre-8.44\ (正则) --with-http_su ...
分类:Web程序   时间:2020-07-17 19:22:38    阅读次数:72
nginx 添加 --with-http_stub_status_module
nginx 添加 --with-http_stub_status_module --with-http_ssl_module
分类:Web程序   时间:2020-07-17 16:29:55    阅读次数:91
nginx: https
1、编译 ./configure --prefix=/usr/local/nginx-1.8\ --with-http_stub_status_module\ (统计数据查看) --with-pcre=/opt/install/nginx/pcre-8.44\ (正则) --with-http_su ...
分类:Web程序   时间:2020-07-17 16:16:30    阅读次数:71
vue cli4.0项目引入typescript
现有的项目是采用vue cli4.0脚手架生成的,现在想要引入typescript。 1.执行安装命令 npm install --save-dev typescript npm install --save-dev @vue/cli-plugin-typescript 2.根目录下新建 tscon ...
分类:其他好文   时间:2020-07-17 16:14:07    阅读次数:46
webpack优化配置
##HMR热模块替换 HMR:hot moddule replacement 热模块替换 作用:一个模块发生变化,只会重新打包这个模块,极大的提升了构建速度 样式文件:可以使用HMR,style-loader内部实现 js文件:默认没有HMR功能,需要修改js代码,添加支持该功能的代码 HMR功能对 ...
分类:Web程序   时间:2020-07-17 16:11:55    阅读次数:75
13659条   上一页 1 ... 43 44 45 46 47 ... 1366 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!