获取Html
[HttpGet]
public HttpResponseMessage GetHtml()
{
//需要加载的html页面的路径
var path = “...”;
var httpResponseMessage = new HttpResponseMessage();
httpResponseMessage.Content = new StringContent(File.ReadAllText(path), Encoding.UTF8);
httpResponseMessage.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
return httpResponseMessage;
}
获取JS
[HttpGet]
public HttpResponseMessage GetJS()
{
//需要加载的JS路径
var path =“...”;
var httpResponseMessage = new HttpResponseMessage();
httpResponseMessage.Content = new StringContent(File.ReadAllText(path), Encoding.UTF8);
httpResponseMessage.Content.Headers.ContentType = new MediaTypeHeaderValue("text/javascript");
return httpResponseMessage;
}
WebAPI 返回Html,js
最新推荐文章于 2025-01-24 08:45:00 发布