online documentation中提到了返回站点按钮自定义的解决方案。
var options = new DashboardOptions {
AppPath = VirtualPathUtility.ToAbsolute("~")
};
app.UseHangfireDashboard("/hangfire", options);
我正在使用以下设置
app.UseHangfire(
config => {
config.UseSqlServerStorage("ConnectionString");
config.UseDashboardPath("/myscheduler");
}
);
令人惊讶的app.UseHangfireDashboard("");
在我的项目中没有在线文档中提到。这就是我使用app.UseHangfire("");
设置
如果部署子文件夹,如何设置“返回站点”选项?
答案 0 :(得分:1)
这是版本旧版本中的错误,它通过更新到最新版本1.5.3来解决。