上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 60 下一页
  2020年12月25日
摘要: winform程序backgroundworker或者异步中修改控件内容需要判断控件的InvokeRequired,然后使用委托执行更改控件内容的操作。代码 using System; using System.Threading; using System.Windows.Forms; names 阅读全文
posted @ 2020-12-25 15:43 邢帅杰 阅读(182) 评论(0) 推荐(0) 编辑
  2020年12月23日
摘要: 1,methods不存在缓存,执行一次运行一次,执行n次,运行n次。 2,computed使用场景:当页面中有某些数据依赖其他数据进行变动的时候,可以使用计算属性。计算属性 computed 是基于data中数据进行处理的,data数据变化,他也跟着变化。当data中数据没有发生改变时,我们调用co 阅读全文
posted @ 2020-12-23 14:32 邢帅杰 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 今天安装vue出现了这个错误,问了好多人,感觉是解决了我的问题,如果有碰到一样的朋友,希望也能解决你们的问题 1.淘宝镜像源会给你自动修复,然后下载相关依赖包。nrm use taobao ,nrm如果你没装,就使用 npm i -g nrm在使用nrm use taobao2.在使用npm i重新 阅读全文
posted @ 2020-12-23 14:07 邢帅杰 阅读(6084) 评论(0) 推荐(0) 编辑
  2020年11月16日
摘要: 组件路径:/views/home/components/bottom.vue 示例: <template> <div> <h1>底部信息</h1> <div>{{ copyright }} <button v-on:click="setTime">更新时间</button></div> </div> 阅读全文
posted @ 2020-11-16 11:33 邢帅杰 阅读(1273) 评论(0) 推荐(0) 编辑
  2020年11月12日
摘要: Promise主要是为了解决异步请求。语法:new Promise((resolve,reject)=>{resolve();//成功 then()reject();//失败 catch()}).then(()=>{//成功后的处理}).catch(()=>{//失败后的处理});//resolve 阅读全文
posted @ 2020-11-12 14:18 邢帅杰 阅读(262) 评论(0) 推荐(0) 编辑
  2020年10月29日
摘要: 官网:https://vuex.vuejs.org/zh/VueX流程:Vue Compontents》dispatch》Actions(Backend API)》commit》Mutation》Mutate》State》Vue Compontents1.安装vuex:https://vuex.vu 阅读全文
posted @ 2020-10-29 12:59 邢帅杰 阅读(392) 评论(0) 推荐(0) 编辑
  2020年10月26日
摘要: 1.NuGet安装StackExchange.Redis,如果已经用了Microsoft.Extensions.Caching.Redis的话,就安装StackExchange.Redis.StrongNameStartUp.cs注入服务:services.AddSingleton<IConnect 阅读全文
posted @ 2020-10-26 11:34 邢帅杰 阅读(352) 评论(0) 推荐(0) 编辑
  2020年10月22日
摘要: 1.MemoryCache 服务器端缓存添加服务:services.AddMemoryCache();使用:注入IMemoryCache _memoryCache; var cityList = new List<City>(); if (!_memoryCache.TryGetValue("cit 阅读全文
posted @ 2020-10-22 10:06 邢帅杰 阅读(302) 评论(0) 推荐(0) 编辑
  2020年10月21日
摘要: 代码: using Microsoft.AspNetCore.Razor.TagHelpers; using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; name 阅读全文
posted @ 2020-10-21 11:42 邢帅杰 阅读(322) 评论(1) 推荐(0) 编辑
  2020年10月20日
摘要: 代码: //配置所有POST请求都加入 ValidateAntiforgeryToken 验证 services.AddAntiforgery(options => { options.FormFieldName = "AntiforgeryFieldName"; options.HeaderNam 阅读全文
posted @ 2020-10-20 17:00 邢帅杰 阅读(216) 评论(0) 推荐(0) 编辑
上一页 1 ··· 25 26 27 28 29 30 31 32 33 ··· 60 下一页