我想調用將在後臺執行某些操作的方法,但我不想更改當前視圖。這是方法:從mvc4視圖調用背景方法
public ActionResult BayesTraining(string s,string path)
{
XmlParse xp = new XmlParse();
using (StreamWriter sw = System.IO.File.AppendText(path))
{
sw.WriteLine("d:/xml/"+xp.stripS(s)+".xml");
sw.Close();
}
return RedirectToAction("Index");
}
正如你所看到的,我目前使用RedirectToAction,只是重新加載方法之後完成工作的頁面。考慮到該方法不會影響UI,我不想每次使用它時刷新網頁。它的工作應該在後臺完成。那麼,我怎麼稱呼它,而不需要重定向視圖呢?
對於FaF導彈+1;) – Vogel612