每个客户端路由均以哈希开头。如何在不干扰api路由的情况下在Vue Router中启用历史记录模式?
我也不想不必以“ / api”开头我的路线。客户端路由无法将Config.HandlerFactoryPath设置为“ api”。有办法实现吗?
APPHOST
public class AppHost : AppHostBase
{
private BackendSettings _settings;
private IHostingEnvironment _environment;
public AppHost(BackendSettings settings, IHostingEnvironment environment) : base("Template.Www", typeof(SurveyService).Assembly)
{
_settings = settings;
_environment = environment;
Routes
.Add<GetSurvey>("/api/survey/{id}", "GET");
}
public override void Configure(Container container)
{
bool isDevelopment = _environment.IsDevelopment();
Plugins.Add(new TemplatePagesFeature());
SetConfig(new HostConfig
{
AddRedirectParamsToQueryString = true,
DebugMode = isDevelopment,
});
}
}
STARTUP
public class Startup
{
public IConfiguration Configuration { get; }
public Startup(IConfiguration configuration) => Configuration = configuration;
// This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
var backendSettings = GetBackendSettings();
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseStaticFiles();
app.UseServiceStack(new AppHost(backendSettings, env));
}
private BackendSettings GetBackendSettings()
{
var settings = new BackendSettings();
Configuration.GetSection("Backend").Bind(settings);
return settings;
}
private FrontendSettings GetFrontendSettings()
{
var settings = new FrontendSettings();
Configuration.GetSection("Frontend").Bind(settings);
return settings;
}
}
请求模型
[Exclude(Feature.Metadata)]
[FallbackRoute("/{PathInfo}", Matches = "AcceptsHtml")]
public class Fallback
{
public string PathInfo { get; set; }
}
VUE ROUTER
export default new Router({
mode: 'history',
routes: [
{
path: '/',
component: Home
},
{
path: '/test',
component: Test
},
{
path: '*',
redirect: '/'
}
]
})
答案 0 :(得分:2)
FAILED_PRECONDITION: The query requires an index. You can create it here: https://console.firebase.google.com/project/testingproject-384af/database/firestore/indexes?create_index=EhJxd
的目的是在不匹配的路由上返回主页,因此,如果仅在客户端上定义路由,则整页请求将返回主页,以便客户端路由可以处理路由。
不可能有匹配的服务器路由和客户端路由,因为客户端路由需要服务器上的后备处理程序才能返回首页,这只会在不匹配的请求上发生。