Chrome控制台在以下片段中的包含JsonConvert的行上显示消息“Uncaught SyntaxError:Unexpected identifier”。页面加载时显示该消息。代码来自MVC.NET项目中的* .cshtml文件。
string json = "{ \"message\": \"hello world!\" }";
dynamic dynJson = JsonConvert.DeserializeObject(data);
我使用VisualStudio 2015中的Manage NuGet命令添加Newtonsoft.Json。 VisualStudio显示已安装Newtonsoft.Json 10.0.3版。我的* .cs文件顶部有using Newtonsoft.Json;
。
我不确定错误是因为我没有正确地包含框架,或者我错误地引用了它。