如何在MVC中使用Tempdata的属性

时间:2019-05-15 02:40:25

标签: c# asp.net asp.net-mvc

我有一个按钮,用于从静态变量中取出数据,然后需要在视图上呈现特定的属性,但是由于某种原因,我无法呈现它。我想念什么?

TellerScreenController:

po <- position_dodgenew(height = 0.3)

ggplot(df,
       aes(x = x, y = y, col = group)) +
  geom_point(position = po) +
  geom_line(position = po)

这是我的观点:

    public ActionResult BtnNext()
    {
        var first = MyQueue.todayQueue.Dequeue();

        TempData["QueueItem"] = first;

        return View();
    }

0 个答案:

没有答案