#Eb

.NET Core webapi 允许put请求方式配置文件

<?xmlversion="1.0"encoding="utf-8"?><configuration><locationpath="."inheritInChildApplications="false"><system.webServer><modules>...
代码星球 ·2021-02-14

.NET Core webapi 发布到IIS配置文件

 1.下载安装文件vc_redist.x64AspNetCore.2.0.6.RuntimePackageStore_x64DotNetCore.2.0.5-WindowsHostingdotnet-sdk-2.1.101-win-x64.exe 2.检查IIS是否包含AspNetCoreModul...
代码星球 ·2021-02-14

selenium webdriver报错 ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。

昨天跑的好好的代码,今天突然报错:ConnectionResetError:[WinError10054]远程主机强迫关闭了一个现有的连接。调查一下,原来是Chrome自动升级,而chromedriver没有更新的原因,手动更新到对应版本就好了。...

webdriver保存验证码截图

element=wait.until(EC.visibility_of_element_located((By.CSS_SELECTOR,'.quc-main.quc-field-captchaimg'))) #等待验证码加载完毕browser.save_screenshot('screenshot.png'...

webdriver.chrome()禁止加载图片

fromseleniumimportwebdriverchrome_options=webdriver.ChromeOptions()prefs={"profile.managed_default_content_settings.images":2}chrome_options.add_experimental_op...

selenium.common.exceptions.WebDriverException: Message: 'chromedriver' executable needs to be in PATH

fromseleniumimportwebdriverbrowser=webdriver.Chrome()browser.get('http://www.baidu.com')运行报错:selenium.common.exceptions.WebDriverException:Message:'chromedriver...

Vue工程模板文件 webpack打包

1、githubgithub地址:https://github.com/MengFangui/VueProjectTemplate 2、webpack配置(1)基础配置webpack.base.config.js constpath=require('path');//处理共用、通用的jsconst...

Vue webpack配置文件

一、代码地址github:https://github.com/MengFangui/VueWebpackConfig 二、配置说明1、命令(1)npmi安装依赖包(2)numrundev发布调试环境(3)npmrunbulid发布线上环境 2、功能(1)处理vue文件(2)处理js文件(3)ES6...
代码星球 ·2021-02-14

webpack 实用配置总结

1、webpack.config.js配置文件为://处理共用、通用的jsvarwebpack=require('webpack');//处理html模板varhtmlWebpackPlugin=require('html-webpack-plugin');//css单独打包varExtractTextPlugin=r...
代码星球 ·2021-02-14

webpack css打包为一个css

1、安装npminstallextract-text-webpack-plugin--save-dev 2、项目目录:index文件夹下的index.css:body{background-color:#ccc;}.flex-div{display:flex;}index文件夹下的index2.css:p{t...
代码星球 ·2021-02-14

webpack 通用模块(每个页面都用到的js)编译

1、项目目录 2、配置文件:webpack.config.jsvarhtmlWebpackPlugin=require('html-webpack-plugin');varwebpack=require('webpack');module.exports={//entry:'./src/app.js',ent...

webpack CommonsChunkPlugin 提取公共代码

1、项目结构2、部分代码module.jsconsole.log('module.js');index文件夹下的index.jsrequire('../module.js');console.log('首页-index文件');login文件夹下的index.js require('../module.js'...

webpack 引入jquery和第三方jquery插件

1、引入jqueryjQuery直接在html中引入,然后在webpack中把它配置为全局即可。index.html:<!DOCTYPEhtml><html><head><metacharset="UTF-8"><title><%=htmlWebpack...

webpack 编译图片文件 file-loader

1、安装插件npmifile-loader--save-dev npm i url-loader --save-dev npm install image-webpack-loader --save-dev  2、项目目...

webpack 编译html模板文件

1、项目结构 安装loader:npmihtml-loader--save-devnpmiejs-loader--save-dev  2、模板文件layer.html<divclass="layer"><div>thisisalayer</div><...
首页上一页...2728293031...下一页尾页