摘要:
一般普通请求这样就可以header("Access-Control-Allow-Origin: *"); // 指定允许的域名 header('Access-Control-Allow-Methods: *'); // 允许的 HTTP 方法 前端设置header设置"Content-Type": 阅读全文
摘要:
const { defineConfig } = require('@vue/cli-service') module.exports = defineConfig({ transpileDependencies: true, productionSourceMap: false, css: { l 阅读全文
摘要:
微信开发者工具使用sass开发小程序 在vacode中下载插件easysass 微信开发者工具中导入已安装的vscode插件 编辑器 > 打开拓展编辑器拓展目录 >找到spook.easysass-0.0.6文件夹 进入文件夹中修改package.json 重启开发者工具,over 阅读全文
摘要:
在开发中,我们经常会将一些常用的代码块、功能块进行封装,为的是更好的复用。那么,被抽离出来独立完成功能,通过API或配置项和其他部分交互,便形成了插件。 函数库 Lodash https://github.com/lodash/lodash Underscore https://underscore 阅读全文
摘要:
this 指向的是 获取 引用类型内存地址 的上下文环境,var obj = { a:'1', foo:function(){ console.log(this.a) } } var a = 2 obj.foo() // 1 匿名函数的内存地址在obj.foo 变量里,所以this指向的obj va 阅读全文
摘要:
在js构造函数里 this 通过 new 实例生成一个独自的一份数据;prototype 通过new 实例生成一个公用的数据; function Vue(){ this.name = 'vue' } var vm1 = new Vue(); vm1.name = 'vm1' var vm2 = ne 阅读全文
摘要:
upstream wss { # 这里的localhost是映射本地服务器,也可以是外网ip,2345是我ws开启的端口。 server localhost:8585; } location /wss { proxy_pass http://127.0.0.1:8585; proxy_http_ve 阅读全文
摘要:
结束这个 spoolsv.exe 进程 阅读全文
摘要:
创建新项目svnadmin create ./目录 svnserve.conf 设置 anon-access = none 是否允许匿名访问 auth-access = write 访问权限( "write", "read", and "none") password-db = passwd 开启密 阅读全文
摘要:
在linux下搭建nginx测试网页的时候,正常打开可以访问,当刷新后页面出现404 not found的问题 Apache <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.html$ - [L] 阅读全文