一、创建vue-ts项目 现Vue CLI3经内置了TypeScript工具支持 npm install -g @vue/cli vue create vue-ts 二、基于类的组件 vue-class-component vue-property-decorator vue-class-compo ...
分类:
其他好文 时间:
2020-08-27 11:47:46
阅读次数:
89
在SDN技术的兴起以及企业对商业扩展速度和运维管理高要求的背景之下,SD-WAN作为SDN的衍生品应运而生。
分类:
其他好文 时间:
2020-08-24 16:30:31
阅读次数:
67
txt文件 生成并下载txt文件: @app.route('/download', methods=['GET']) def download(): content = "long text" response = make_response(content) response.headers["C ...
分类:
编程语言 时间:
2020-08-19 19:59:30
阅读次数:
79
1.Flask路由 1.1 定义路由 from flask import Flask app = Flask(__name__) # 1.路由对应的URL必须以/开头 # 2.通过app的url_map属性获取所有的路由规则 (URL资源段 支持的请求方式 视图函数标记) # 3.可以通过route ...
分类:
其他好文 时间:
2020-08-17 17:18:57
阅读次数:
67
用安装镜像进入rescue模式 chroot /mnt/sysimage/ rescue模式不会自动配置网络,需要手动配置。使用ip link命令。 ip link set dev xxxx up ip addr add xx.xx.xx.xx/24 dev xxxx ip route add de ...
分类:
其他好文 时间:
2020-08-15 22:33:45
阅读次数:
124
出现这个问题,控制台会报[NavigationDuplicated {_name: "NavigationDuplicated", name: "NavigationDuplicated"}]。其原因在于Vue-router在3.1之后把$router.push()方法改为了Promise。所以假如... ...
分类:
其他好文 时间:
2020-08-12 15:52:30
阅读次数:
52
一、准备1、一台可以访问互联网的云服务器,已经安装了服务商提供的Centos操作系统。2、有控制台权限,可以访问控制台(或者叫VNC)二、操作1、查询云服务器的信息ifconfig//获取IP和子网掩码route-n//获取网关cat/etc/resolv.conf//获取DNS,或者用其他公共DNS服务器2、编辑grub配置文件,增加以下启动项menuentry‘NetInstall‘{setr
分类:
其他好文 时间:
2020-08-09 11:52:53
阅读次数:
86
There are n cities connected by m flights. Each flight starts from city u and arrives at v with a price w. Now given all the cities and flights, toget ...
分类:
其他好文 时间:
2020-08-05 10:29:42
阅读次数:
73
1、启动设备,设置PC1和PC2的IP地址、子网掩码和网关 2、配置SW1信息: <Huawei>undo terminal monitor 关闭弹窗 <Huawei>system-view 进入系统试图 [Huawei]user-interface console 0 [Huawei-ui-con ...
分类:
其他好文 时间:
2020-07-30 21:44:55
阅读次数:
88
Flask简单使用 1、定义路由 @app.route('/')是装饰器,定义如下: app.route(rule, options) rule参数:是绑定URL与函数。 options参数:是可选参数。 2、run() 函数来让应用运行在本地服务器上。定义如下 : app.run(host, po ...
分类:
其他好文 时间:
2020-07-29 21:55:38
阅读次数:
87