嗨我有下面的字符串,我必须拆分并放入地图。通过字符串标记器或.split方法拆分时,我得不到我想要的结果.Below是我的字符串
{"errorCode":"specialChars.allowed","errorParams":["a-zA-Z0-9^][_{|}=~!\"#$%&()*+,-.:'\\/?@space"]}
我想要
Key:errorCode Value:specialChars.allowed
Key:errorParams Value:[
"a-zA-Z0-9^][_{|}=~!\"#$%&()*+,-.:'\\/?@space"
]
答案 0 :(得分:1)
由于您的输入String是JSON字符串,因此您可以使用Gson API将其转换为Map。
const routes: CustomRoute[] = [
{ path: '', redirectTo: '/home', pathMatch: 'full' },
{ path: 'home', component: HomeComponent, data: { ShowSideBar: true, ShowTopBar: true } }
];