0

我知道这看起来像是一个重复的问题,但请在将其标记为重复之前阅读整个问题。

首先,我在我的 ASP Web 应用程序中模拟 Windows 服务来发送每周电子邮件,所以Global.asax我正在运行我的函数来发送电子邮件。

现在电子邮件内容是 HTML 格式,我想渲染视图以获取内容。问题是在我的函数中,我没有以下任何内容:

  • Controller
  • ControllerContext
  • HttpContext
  • RoutData
  • ... & 多得多。这是有道理的,因为该函数是作为回调而不是作为 HTTP 请求操作调用的。

我尝试通过读取文件然后使用方法RazorEngine来使用部分作为模板。Razor.Parse()但是我在这种方法中遇到了很多问题,因为模板中没有包含任何内容。我的意思是:它一直告诉我当前上下文中不存在名称“Html”, 或者'CompiledRazorTemplates.Dynamic.becdccabecff' does not contain a definition for 'Html'即使我包含System.Web.Mvc.Html.

我该如何解决这个问题?

4

2 回答 2

1

我认为最好的方法是假设您开发了一个真正的 NT 服务并使用HttpClient向您的局部视图发送一个 http 请求并接收作为字符串的响应并使用它来组成您的电子邮件。但是,您可以通过HttpContext在类RunScheduledTasks中进行一些更改来获得方法。Scheduler

 public delegate void Callback();

 public delegate void Callback(HttpContext httpContext);

添加cache.Current_HttpContext = HttpContext.Current;到运行方法

    public static void Run(string name, int minutes, Callback callbackMethod)
    {
        _numberOfMinutes = minutes;

        CacheItem cache = new CacheItem();
        cache.Name = name;
        cache.Callback = callbackMethod;
        cache.Cache = HttpRuntime.Cache;
        cache.LastRun = DateTime.Now;
        cache.Current_HttpContext = HttpContext.Current;
        AddCacheObject(cache);
    }

更改CacheCallback

    private static void CacheCallback(string key, object value, CacheItemRemovedReason reason)
    {
        CacheItem obj_cache = (CacheItem)value;
        if (obj_cache.LastRun < DateTime.Now)
        {
            if (obj_cache.Callback != null)
            {
                obj_cache.Callback.Invoke(obj_cache.Current_HttpContext);
            }
            obj_cache.LastRun = DateTime.Now;
        }
        AddCacheObject(obj_cache);
    }

编辑: 如何使用HttpClient

  HttpClient client = new HttpClient();
  HttpResponseMessage response = await client.GetAsync("http://localhost/controller/action/");
  response.EnsureSuccessStatusCode();
  string responseBody = await response.Content.ReadAsStringAsync();
于 2013-05-05T07:23:13.537 回答
0

在不使用第三方库的情况下,可以使用此方法在 Global.asax.cs 文件中生成视图字符串

public class EmptyController : Controller { }

public string GetView(string viewName)
   {
   //Create an instance of empty controller
   Controller controller = new EmptyController();

   //Create an instance of Controller Context
   var ControllerContext = new ControllerContext(Request.RequestContext, controller);

   //Create a string writer
   using (var sw = new StringWriter())
   {
      //get the master layout
      var master = Request.IsAuthenticated ? "_InternalLayout" : "_ExternalLayout";

      //Get the view result using context controller, partial view and the master layout
      var viewResult = ViewEngines.Engines.FindView(ControllerContext, viewName, master);

      //Crete the view context using the controller context, viewResult's view, string writer and ViewData and TempData
      var viewContext = new ViewContext(ControllerContext, viewResult.View, controller.ViewData, controller.TempData, sw);

      //Render the view in the string writer
      viewResult.View.Render(viewContext, sw);

      //release the view
      viewResult.ViewEngine.ReleaseView(ControllerContext, viewResult.View);

      //return the view stored in string writer as string
      return sw.GetStringBuilder().ToString();
   }
}
于 2018-01-10T16:12:06.327 回答