1、在vue.config.js进行如下配置: iconPath:{ favicon32:'favicon.ico', favicon16:'favicon.ico', appleTouchIcon:'favicon.ico', maskIcon:'favicon.ico', msTilelmage ...
分类:
其他好文 时间:
2021-04-14 12:30:18
阅读次数:
0
head部分: <script type="text/javascript" src="bower_components/jquery/dist/jquery.min.js"></script> <script type="text/javascript" src="bower_components ...
分类:
其他好文 时间:
2021-04-14 12:17:46
阅读次数:
0
EC2 Instance Pricing Options On-Demand Pay by the hour or the second depending on the type of instnace you run. Great for flexbility. (Run proprotype ...
分类:
其他好文 时间:
2021-04-14 12:14:34
阅读次数:
0
在制作XenServer 实验之时,在教室里连接XenServer很正常,但是在关机之后再次连接就不能连接上了。 一开始我以为是虚拟网络编辑器的问题,还原了几次配置后都不可以,后来打开其他虚拟机,发现其他虚拟机ping通主机,主机却ping不通虚拟机。 于是去百度,百度到是网卡又问题,只要重启网卡就 ...
分类:
系统相关 时间:
2021-04-14 12:08:13
阅读次数:
0
/** * 跨域请求设置 */ function checkAllowOrigin() { //从配置文件获取允许源域名 $allowOrigin = explode(',', env('app.allow_origin')); if (in_array('*', $allowOrigin)) { ...
分类:
Web程序 时间:
2021-04-14 12:05:15
阅读次数:
0
>>> list_a=[1,2,3,4] >>> list_a [1, 2, 3, 4] >>> list_b=list_a >>> list_b [1, 2, 3, 4] >>> list_a.append(1) >>> list_a [1, 2, 3, 4, 1] >>> list_b [1, ...
分类:
编程语言 时间:
2021-04-13 12:54:07
阅读次数:
0
from flask import Flask from flask_restful import Api,Resource app = Flask(__name__) api = Api(app) class HelloWorld(Resource): def get(self): return ...
分类:
其他好文 时间:
2021-04-13 12:26:40
阅读次数:
0
当tomcat服务器出现404、500错误时候希望能够给用户友好的现实界面;只需要在项目的web.xml中添加一些配置,显示我们自定义的404/500错误网页即可 打开%CATALINA_HOME%/conf/web.xml文件,在<web-app>标签中添加如下内容: 简单写一下404/500自定 ...
分类:
其他好文 时间:
2021-04-13 12:12:39
阅读次数:
0
参考博文: http://www.cnblogs.com/happyyang/articles/3553687.html http://blog.csdn.net/revent/article/details/49203619 http://blog.csdn.net/ad921012/articl ...
分类:
其他好文 时间:
2021-04-13 12:09:15
阅读次数:
0
在wx上建立global的变量,然后request的时候,发送出去 关键代码,在请求体外 const app = getApp(); 在请求体内 historyId:app.globalData.zhanbuYao.data.historyId, 在方法体第一行的console.log 可以看到,取 ...
分类:
微信 时间:
2021-04-13 12:05:18
阅读次数:
0