上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页
摘要: asp.net 核心 MVC - 找不到布局视图“~/视图/共享/_Layout.cshtml” - 堆栈溢出 (stackoverflow.com) 页面属性/生成操作/内容 阅读全文
posted @ 2023-04-29 13:38 孤海飞雁 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 在刷新Token ok后 数据有返回,但是 最开始的请求那里总是underfined,这个找了一天后找到原因,记得return, 没有 return就是underfined 阅读全文
posted @ 2023-04-28 10:37 孤海飞雁 阅读(28) 评论(0) 推荐(0) 编辑
摘要: 错误使用 app.UseAuthentication();//认证 这里要加,位置不能反 app.UseAuthorization();//授权 app.UseCors();//启用Cors 解决方法 app.UseCors();//启用Cors app.UseAuthentication();// 阅读全文
posted @ 2023-04-25 10:28 孤海飞雁 阅读(38) 评论(0) 推荐(0) 编辑
摘要: System.InvalidOperationException:“Dynamic port binding is not supported when binding to localhost. You must either bind to 127.0.0.1:0 or [::1]:0, or 阅读全文
posted @ 2023-04-22 12:26 孤海飞雁 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 这个百度一大片,到处不行,国外网站找也是有问题,官网文档也是有点操蛋。搞到现在ok了 直接上代码。 //Program.cs 配置 #region 日志 LogManager.LoadConfiguration(ParameterConfig.Nlog).GetCurrentClassLogger( 阅读全文
posted @ 2023-04-14 22:53 孤海飞雁 阅读(246) 评论(0) 推荐(0) 编辑
摘要: <el-form-item label="菜单权限"> <el-tree :data="navList" ref="treeRef" node-key="menuId" highlight-current=“true” :props="defaultProps" @check="checked" s 阅读全文
posted @ 2023-04-13 18:29 孤海飞雁 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 前面还好好的,今天线上就反馈出这个问题。百度一下,就是iframe框不能返回数据,下面解决方法 解决方法一//代码中添加响应头app.Use(async (context, next) => { // Do work that can write to the Response. context.R 阅读全文
posted @ 2023-03-29 17:03 孤海飞雁 阅读(261) 评论(0) 推荐(0) 编辑
摘要: var services = new ServiceCollection() .AddTransient<Foo>() .AddScoped<Bar>() .Configure<HttpClientFactoryOptions>(options => { options.HandlerLifetim 阅读全文
posted @ 2023-03-14 22:16 孤海飞雁 阅读(11) 评论(0) 推荐(0) 编辑
摘要: HttpClient 》HttpMessageHandler 》HttpMessageHandlerBuilder 》DefaultHttpMessageHandlerBuilder 没有自定义的话,将采取DefaultHttpMessageHandlerBuilder中的实现 HttpMessag 阅读全文
posted @ 2023-03-10 22:03 孤海飞雁 阅读(14) 评论(0) 推荐(0) 编辑
摘要: HttpClent 的组成由多个HttpMessageHandle 组成 LifetimeTrackingHttpMessageHandler LoggingScopeHttpMessageHandler LoggingHttpMessageHandler HttpClientHandler这个由 阅读全文
posted @ 2023-03-09 22:06 孤海飞雁 阅读(12) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 下一页