Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
364 views
in Technique[技术] by (71.8m points)

c# - How to check whether a property exists in a JObject in an Angular App

I need to check whether a given property exists in a JObject, to use with my ng-show directive for my Angular app.

I tried accessing the property using the square brackets syntax:

<li ng-show="@Model["punkt1"] != null">@Model.punkt1</li>

This is an example of a JSON response:

{
  "value": null,
  "editor": {
    "name": "Infobox",
    "alias": "infobox",
    "view": "/App_Plugins/MyGridEditor/infobox.html",
    "render": "/App_Plugins/MyGridEditor/infobox.cshtml",
    "icon": "icon-grid",
    "config": {}
  },
  "active": false,
  "heading": "Toiletter",
  "punkt1": "qwert",
  "punkt2": "qwert"
}

There can be up to 5 properties after the "heading" property and I only need to display the ones that are received, meaning the li elements should be removed or hidden if the property is not present in the JSON response.

My above method still doesn't hide the li elements and I am not able to do any checks on properties that do not exist.

Don't mind the properties before the heading.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It should be

<li ng-show="@Model.punkt1">@Model.punkt1</li>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...