摘要: 配置IIS应用程序池 1、将对应 应用程序池 回收(Recycling) 固定时间间隔(Regular Time Interval) 从默认的1740改成0 2、将 进程模型(Process Model) 闲置超时(Idle Time-out)改成0 阅读全文
posted @ 2021-07-02 08:29 YuAn' 阅读(413) 评论(0) 推荐(0) 编辑
摘要: Yes you can export sdf to sql script and then run the sql script on new sql database. Below link shows the step-by-step guide to achieve it. https://b 阅读全文
posted @ 2021-01-07 13:35 YuAn' 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 1. 安装axios: npm install --save axios 2. 安装 @nuxtjs/axios和@nuxtjs/proxy来处理 axios 跨域问题: npm i @nuxtjs/axios @nuxtjs/proxy -D 3. nuxt.config.js中配置: modul 阅读全文
posted @ 2020-03-09 22:19 YuAn' 阅读(11518) 评论(1) 推荐(0) 编辑
摘要: 1.MEF在MVC中和在WebApi中的初始化,是用区别的,他们分别实现的接口如下: //WebApi需要实现的接口 System.Web.Http.Dependencies.IDependencyResolver //MVC需要实现的接口 System.Web.Mvc.IDependencyRes 阅读全文
posted @ 2020-02-25 20:32 YuAn' 阅读(286) 评论(0) 推荐(0) 编辑
摘要: 1. 在服务器上安装node.js .(npm -v查看是否安装成功) --https://nodejs.org/en/download/ 2. vscode中执行 npm run build ,把本地文件的.nuxt、static、package.json这三个文件夹放到服务器站点目录文件下 3. 阅读全文
posted @ 2020-02-05 13:36 YuAn' 阅读(476) 评论(0) 推荐(0) 编辑
摘要: 前段工程页面间跳转我们一般是这样写的: 在起始页面传递 js写法: let name = "ayasa" this.$router.push({ path : ' /404 ' , query : { name } }) html写法: <nuxt-link :to=" '/404?name=' + 阅读全文
posted @ 2020-01-31 22:42 YuAn' 阅读(2522) 评论(0) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2020-01-30 12:58 YuAn' 阅读(153) 评论(0) 推荐(0) 编辑
摘要: 1 https://www.cnblogs.com/zyskr/p/10609288.html VSCode搭建Vue项目 在vscode上搭建一个vue项目 初学总结。 1.假设Vscode、nodejs等已经安装好了。 2.全局安装vue-cli,vue-cli可以帮助我们快速构建Vue项目。 阅读全文
posted @ 2020-01-28 17:20 YuAn' 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 问题: urllib.request.urlopen() 方法经常会被用来打开一个网页的源代码,然后会去分析这个页面源代码,但是对于有的网站使用这种方法时会抛出"HTTP Error 403: Forbidden"异常 例如 执行下面的语句时 urllib.request.urlopen("http 阅读全文
posted @ 2020-01-20 16:17 YuAn' 阅读(439) 评论(0) 推荐(0) 编辑
摘要: 当用OLEDB读取Excel的时候,解决同一列中“字符串”和“数字”两种格式同时存在,读取时不能正确显示“字符串”格式的问题: 当我们设置IMEX=1时将强制混合数据转换 为文本,但仅仅这种设置并不可靠,IMEX=1只确保在某列前8行数据至少有一个是文本项的时候才起作用,它只是把查找前8行数据中数据 阅读全文
posted @ 2018-06-29 14:18 YuAn' 阅读(880) 评论(0) 推荐(0) 编辑