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