我已经使用Bootstrap建立了一个非常基本的ServiceStack项目,并且我试图让它看到我的主页(Razor View)它没有,所以我得到了我的快照主页。以下是我创建项目的步骤:
已添加到' AppHost.cs':
SetConfig(new HostConfig
{
DefaultRedirectPath = "/Home"
});
已移动" _layout.cshtml"从/ veiws / shared到/ views文件夹
已添加到MyStuffService.cs
public class HomeService : Service
{
[DefaultView("Home")]
public int Get(Home request)
{
return 0;
}
}
已添加到MyStuffModel.cs:
[Route("/home", "GET")]
public class Home : IReturn<int>
{
}
这是我的AppHost.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Funq;
using ServiceStack;
using ServiceStack.Razor;
using MyStuff.ServiceInterface;
namespace MyStuff
{
public class AppHost : AppHostBase
{
/// <summary>
/// Default constructor.
/// Base constructor requires a name and assembly to locate web service classes.
/// </summary>
public AppHost()
: base("MyStuff", typeof(MyStuffServices).Assembly)
{
}
/// <summary>
/// Application specific configuration
/// This method should initialize any IoC resources utilized by your web service classes.
/// </summary>
/// <param name="container"></param>
public override void Configure(Container container)
{
//Config examples
//this.Plugins.Add(new PostmanFeature());
//this.Plugins.Add(new CorsFeature());
this.Plugins.Add(new RazorFormat());
SetConfig(new HostConfig
{
DefaultRedirectPath = "/Home"
});
}
}
}
这是我的Global.asax
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.SessionState;
namespace MyStuff
{
public class Global : System.Web.HttpApplication
{
protected void Application_Start(object sender, EventArgs e)
{
new AppHost().Init();
}
}
}
我没有错误,包管理员说我没有遗漏任何包裹。我觉得我有一个缺失的步骤,非常感谢任何帮助。
更新:在启用调试时执行,这是我使用Internet Explorer打开时获得的内容
@inherits ViewPage
@{
ViewBag.Title = "Hello World Service";
}
<div>
<div>
<input class="form-control input-lg" id="Name" type="text" placeholder="Type your name">
<p id="helloResult" style="margin-top: 15px;font-size: large"></p>
</div>
</div>
<script>
$('#Name').keyup(function () {
var name = $('#Name').val();
if (name) {
$.getJSON('/hello/' + name)
.success(function (response) {
$('#helloResult').html(response.Result);
});
} else {
$('#helloResult').html('');
}
});
</script>
答案 0 :(得分:2)
看起来这个问题可能来自现有的MVC Razor项目模板,该模板正在添加覆盖Microsoft.AspNet.Razor.3.2.2
引用的NuGet包ServiceStack.Razor
。
避免这种情况的一种方法是在添加新视图时使用基本HTML项目模板,并使用cshtml
扩展名对其进行命名。
这将避免来自MVC项目模板的不需要的NuGet引用。
为了使这更直接和明显,ServiceStackVS extension has been updated包含一个简单的Razor项目模板,该模板不会添加有问题的Microsoft.AspNet.Razor.3.2.2 NuGet包,只需添加一个空白的HTML页面。
如果您不小心使用其中一个MVC项目模板,要修复项目,您需要执行以下步骤。
Installed packages
(VS 2013)<runtime>
条目。希望有所帮助。