摘要:
1、创建组件 <template> <div class="s-canvas" style="display: inline"> <canvas id="s-canvas" :width="contentWidth" :height="contentHeight"></canvas> </div> 阅读全文
摘要:
设置目录提示 在扩展中安装 Path Autocomplete 然后再settings.json文件中添加上 "path-autocomplete.extensionOnImport": true, "path-autocomplete.pathMappings": { "@":"${folder} 阅读全文
摘要:
babel-plugin-transform-remove-console 的作用是移除项目中所有的console. * 安装方法 安装完成后项目的babel.config.js文件中添加transform-remove-console字符串 但是babel.config.js是全局文件, 这样不管 阅读全文
摘要:
在web.config里边的system.webServer节点中添加: <httpProtocol> <customHeaders> <add name="Access-Control-Allow-Origin" value="*" /> <add name="Access-Control-All 阅读全文
摘要:
安装: npm install postcss-px-to-viewport --save-dev 在根目录下创建 postcss.config.js文件并进行配置 module.exports = { plugins: { autoprefixer: {}, //给不同的浏览器添加前缀 "post 阅读全文
摘要:
第一步:下载vue-lazyload npm install vue-lazyload --save 第二步:引入 import lazyLoad from 'vue-lazyload' 第三步:配置 Vue.use(lazyLoad, { loading: require("./assets/im 阅读全文
摘要:
开始在本地调用HTTPS接口的时候,程序抛出”基础连接已关闭“的错误。 后来在代码中加上: ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; ServicePointManager 阅读全文
摘要:
1、re.match() re.mach从字符串的起始匹配,如果起始位置匹配不成功,则返回none 如果reg="baidu",则会返回none ,因为在字符串的起始位置没有找到baidu 还可以使用group(num)或groups匹配对象函数来匹配表达式。 2、re.search() 扫描整个字 阅读全文