1.概念 Cache-control用于控制HTTP缓存(在HTTP/1.0中可能部分没实现,仅仅实现了Pragma: no-cache) 数据包中的格式: Cache-Control: cache-directive cache-directive可以为以下: request时用到: | "no- ...
分类:
Web程序 时间:
2021-04-07 11:20:59
阅读次数:
0
1、创建指令文件bthPermission.js,编写自定义指令: import Vue from 'vue'; import api from "api"; /**权限指令**/ const has = Vue.directive('has', { bind: async function (el ...
分类:
其他好文 时间:
2021-03-10 13:37:17
阅读次数:
0
Redis 安装 安装准备: redis 压缩包 官网下载地址:https://redis.io/download 安装步骤: 第一步:安装 gcc 编译器 官网发布的 Redis 压缩包是 C 语言源码文件,要安装 Redis 需要 gcc 编译器来编译源码 输入安装 gcc 命令,如下: [ro ...
分类:
其他好文 时间:
2021-03-10 13:27:29
阅读次数:
0
Step 1 — Installing Apache and Updating the Firewall Adjust the Firewall to Allow Web Traffic sudo apt update sudo apt upgrade sudo apt install apache ...
分类:
系统相关 时间:
2021-03-06 14:52:16
阅读次数:
0
###目录结构 ├── build // 构建相关 ├── config // 配置相关 ├── src // 源代码 │ ├── api // 所有请求 │ ├── assets // 主题 字体等静态资源 │ ├── components // 全局公用组件 │ ├── directive // ...
分类:
其他好文 时间:
2021-02-16 12:08:51
阅读次数:
0
一、概念 AngularJS中,只关心数据,数据的变化会自动引起视图的变化。并且视图是局部刷新的,不是整个页面刷新的,AngularJS会自动识别哪里用到了这个更新的数据,即脏数据检查。 我们可以把控制器中的数据表现在视图上,也可以更新视图来改变控制器中的数据。 最简单的更新视图的方法就是表单元素, ...
分类:
Web程序 时间:
2021-02-02 11:09:35
阅读次数:
0
1)全局注册 1.在main.js中通过Vue.directive全局注册一个指令 Vue.directive('demo', { bind: function (el, binding, vnode) { var s = JSON.stringify el.innerHTML = 'name: ' ...
分类:
其他好文 时间:
2021-01-08 10:52:25
阅读次数:
0
系统 windows 命令 nginx -t 报错 nginx emerg invalid number of arguments in "root" directive.... 原因 root行配置最后没写分号导致,加上分号即可解决 ...
分类:
其他好文 时间:
2020-12-29 11:29:07
阅读次数:
0
freeswitch.xml 说明 XML的根是 document 在document是由多个section组成,每个section对应一部分功能。其中有两个X-PRE-PROCESS预处理指令,它的作用是将data参数指定的文件内容包含include到当前文件中来。 <?xml version=" ...
分类:
其他好文 时间:
2020-12-18 13:09:21
阅读次数:
3
自定义指令 当指令不满足需求时,可以自定义指令,语法如下: Vue.directive('focus',{ inserted: function(el){ //el表示指令所绑定的元素 el.focus() } }) 使用方法和其他指令一样 <input type="text" v-focus> 带 ...
分类:
其他好文 时间:
2020-12-18 13:03:56
阅读次数:
3