我有这样的JSON
getViewsManager: [Function] },
state: {},
url:
Url {
protocol: null,
slashes: null,
auth: null,
host: null,
port: null,
hostname: null,
hash: null,
search: '',
query: {},
pathname: '/profile/nmac1',
path: '/profile/nmac1',
href: '/profile/nmac1' },
我如何访问url. hostname
答案 0 :(得分:1)
这就是我认为使用控制台日志进行打印的方式(它显示类型,并用[Function]
注意其他内容)。这是一个JSON对象,而不是JSON字符串,不需要解析。尝试
jsonObj.url.hostname // (jsonObj is your variable name)