如何在视图中访问json变量到asp.net 5中的控制器

时间:2016-07-14 01:31:08

标签: javascript json asp.net-mvc

学习asp.net 5。 我在控制器和视图文件中有以下代码。我在索引视图文件中声明了一个javascript / json变量,我试图将该变量分配给HomeController.cs文件中的ViewData。我在索引视图中再次显示ViewData值。无法识别HomeController.cs文件中的错误,因为json变量无法识别。

HomeController.cs
-------------------
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Threading.Tasks;
    using Microsoft.AspNet.Mvc;

    namespace EmptyAspDotNet.Controllers
    {
        public class HomeController : Controller
        {
             public IActionResult Index()
            {
                ViewData["message"] = ParaString.message;
                return View();
            }        
        }
    }

Index.cshtml
--------------    
<!DOCTYPE html>
<html>
    <head>
        <title>Empty Project taking shape</title>
        <script>
           var ParaString = { "message": "Welcome to this project" };
        </script>
    </head>

    <body>
        <h1>@ViewData["message"]</h1>
    </body>
</html>

0 个答案:

没有答案