单项选择题
下列JSON字符串正确的是()
A.{"name":"BeJson","address":{"street":"科技园路.","city":"江苏苏州","country":"中国"}}
B.{"name":"BeJson","address":["street":"科技园路.","city":"江苏苏州","country":"中国"]}
C.["name":"BeJson","address":["street":"科技园路.","city":"江苏苏州","country":"中国"]]
D.["name":"BeJson","address":{"street":"科技园路.","city":"江苏苏州","country":"中国"}]
相关考题
-
单项选择题
下列关于ASP.NET MVC Razor 视图引擎说法正确的是()。
A.MVC 的视图只能使用Razor 视图引擎
B.Razor 视图的文件扩展名是.aspx
C.Razor 语法使用@符号开头
D.Razor 语法使用< %...%>包裹代码块 -
多项选择题
有一个ArrayList 对象items,包含了若干下列Book 类型的对象,则下列查询表达式编写正确的有()
A.from Book b in items where b.Price>50
B.from Book b in items where b.Price>50select b
C.from b in items where b.Price>50select b.Price
D.from Book b in items where b.Price >50select new {b.Price } -
单项选择题
在ASP.NET MVC中,阅读以下URL路由代码,下列选项中,URL符合规则的是()
A.http://localhost/locale
B.http://localhost/News/Locale
C.http://localhost/news/3
D.http://localhost/news/locale/4
