添加了一个空的.Net项目,并添加了DTO,服务和视图的文件夹。 -在Views文件夹中添加了_Layout.cshtml页面和Hello.cshtml页面。 -在DTO文件的路由下面添加了
[Route("/hello")]
public class Hello : IReturn<HelloResponse>
{
}
public class HelloResponse
{
public string Msg { get; set; }
}
-在服务中的服务方法下方添加了
public HelloResponse Any(Hello rqeuest)
{
return new HelloResponse { Msg = "Hi!!" };
}
访问http://localhost:port/hello时 我看到的是快照页面,而不是Hello.cshtml页面。
我在Servicestack 5.1上,而且我已经将cshtml页面的属性设置为复制(如果较新)。
请您指导可能出现的问题吗?