角度-如何在没有数组的情况下使用插值显示数据

时间:2018-10-09 07:19:39

标签: angular

我不需要数据数组,就像您使用Processing triggers for libc-bin (2.24-11+deb9u3) ... $ wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip $ unzip -q android-sdk.zip -d android-sdk-linux $ echo y | android-sdk-linux/tools/android --silent update sdk --no-ui --all --filter android-${ANDROID_COMPILE_SDK} ************************************************************************* The "android" command is deprecated. For manual SDK, AVD, and project management, please use Android Studio. For command-line tools, use tools/bin/sdkmanager and tools/bin/avdmanager ************************************************************************* Unrecognized argument --silent ERROR: Job failed: exit code 1 一样。 我想知道如何不使用它就显示一些JSON数据,因为这不是JSON数据数组,而是一组数据。 (单) 我已经尝试过像*ngFor=""一样,但这不起作用。它说:{{ user.name }},所以我认为它没有被定义,与我使用ERROR TypeError: Cannot read property 'name' of undefined的情况不同 就像我说过的那样,我不需要数组,因此ngFor在这种情况下将无法工作,我需要在此处定义数据的内容,例如 would ,但我不确定您要使用什么d使用。

谢谢。

1 个答案:

答案 0 :(得分:0)

如果仅需要显示JSON,则可以使用json管道

{{user | json}}

如果用户未定义,还需要使用* ng

<div *ngIf="user">
   <h1>{{user | json}}</h1>
</div>