the extracted api format is pure object format
{"name":"james","city":"Taipei","country":"Taiwan"}
using ngFor to run the table cannot run out because object format is not supported
how do I change it to array format?
want to become
[
{"name":"james","city":"Taipei","country":"Taiwan"}
]