小编Mim*_*ina的帖子

在IIS上部署VUE应用程序

我正在尝试在 IIS 上部署 VUE 前端应用程序。
路由在开发模式下工作正常,但是,当我在 IIS 上托管 VUE 应用程序时,路由中似乎出现了一些问题。当我单击链接时,我想导航到同一单页应用程序中的另一个页面,而无需刷新网站。相反,发生的情况是 URL 中的路由更新并且页面刷新,从而导致 404 Page Not Found 错误。

有人可以建议如何配置 IIS 来处理 VUE 前端应用程序的路由(我正在使用 vue-router)?

iis web-applications web-deployment vue.js vue-router

7
推荐指数
0
解决办法
5220
查看次数

C# gRPC 客户端拦截器设置授权标头

我正在尝试为始终设置配置的 API 令牌的 gRPC 客户端创建一个拦截器。

\n

问题是我找不到设置context.Options.Headers. 如果我正在阅读文档,我需要调用该WithHeaders方法,并且需要设置新的元数据,以便我可以添加更多标头。唯一的问题是仍然没有创建 headers 对象。

\n

有谁知道我做错了什么?

\n

文件:

\n

https://grpc.github.io/grpc/csharp/api/Grpc.Core.CallOptions.html?q=calloptions

\n

代码:

\n
using System;\nusing Floof.Common.Exceptions.IoC;\nusing Grpc.Core;\nusing Grpc.Core.Interceptors;\nusing Microsoft.Extensions.Configuration;\nusing Microsoft.Extensions.Logging;\n\nnamespace Floof.Common.GrpcClient.Interceptors\n{\n    public class AuthorizationHeaderInterceptor : Interceptor\n    {\n        private readonly ILogger<AuthorizationHeaderInterceptor> _logger;\n        public const string Section = "gRPC";\n        public const string Key = "ApiKey";\n\n        private const string AuthorizationHeader = "Authorization";\n        private readonly string _apiToken;\n\n        public AuthorizationHeaderInterceptor(\n            ILogger<AuthorizationHeaderInterceptor> logger,\n            IConfiguration configuration\n        )\n        {\n            if (configuration == null)\n                throw new ArgumentNullException(nameof(configuration));\n            \n            _logger …
Run Code Online (Sandbox Code Playgroud)

c# interceptor grpc

6
推荐指数
1
解决办法
5421
查看次数

如何使用对象属性获取 List&lt;customClass&gt; 中自定义对象元素的索引?

我有一个自定义类“学生”,它有两个属性“姓名”和“年龄”。在我的 main 方法中,我创建了此自定义类 List 的列表,并向该列表添加了 4 个 Student 对象。我的问题是,如何使用对象的任何属性来获取其中一个对象的索引?

例如,如何获取 Student('Dido', 18) 的索引?

void main() {
  List<Student> studentsList = [];
  studentsList.add(Student('Jack', 16));
  studentsList.add(Student('Tamer', 17));
  studentsList.add(Student('Dido', 18));
  studentsList.add(Student('Lili', 15));    
}

class Student{
  String name;
  int age;  
  Student(this.name, this.age);
} 
Run Code Online (Sandbox Code Playgroud)

oop dart flutter

5
推荐指数
1
解决办法
3121
查看次数

C# - 如何检查 DateTime 是否有时间

如何验证给定的 DateTime 是否具有实际时间而不仅仅是默认的午夜时间 (00:00:00)。

DateTime.TryParse("2022-11-01T14:52:17", out DateTime withTime1); // has time
DateTime.TryParse("2022-11-01T00:00:01", out DateTime withTime2); // has time
DateTime.TryParse("2022-11-01T00:00:00", out DateTime noTime ); // doesn't have time
Run Code Online (Sandbox Code Playgroud)

.net c# datetime

-2
推荐指数
1
解决办法
135
查看次数