我查了Run servicestack side by side with another web framework。
当我添加位置标记时,“api”未解析...我需要做些什么才能让位置标记知道“api”?
答案 0 :(得分:1)
首先确保遵循README.txt instructions在ASP.NET MVC中运行ServiceStack。
ServiceStack会根据<location>
标记自动推断处理程序路径,如果有多个或者有其他问题推断,可以在Config.ServiceStackHandlerFactoryPath
中明确设置,例如:
SetConfig(new EndpointHostConfig {
ServiceStackHandlerFactoryPath = "api",
});