我需要在我的简单角度应用程序中创建 post-type ...我有一个带联系人的json文件
unpaidSims = set(sim.value for sim in theirSimColumn) - set(sim.value for sim in ourSimColumn)
我不需要管理员或数据库,因为我将维护该网站。使用上面的内容,我想点击列表项 {
"contacts": [
{
"name": "Alf",
"tel": [
{
"home": "0134567890"
}
],
"address": "1 A Road, A Town, A County, AB123CD",
"email": "something@somehost.com"
},
{
"name": "Andrew",
"tel": [
{
"mobile": "0774567890"
}
],
"address": "1 A Road, A Town, A County, AB123CD",
"email": "something@somehost.com"
},
{
"name": "Zoe",
"tel": [
{
"mobile": "07712456789"
}
],
"address": "1 A Road, A Town, A County, AB123CD",
"email": "something@somehost.com"
}
]
}
,它会将路线和视图更改为alf
或domain.com/alf
,domain.com/contact/alf
模板视图将使用contact
1}} info(来自json)
谷歌搜索只给我留下了数据库/服务器/管理员教程。但我的需求要简单得多。
简而言之 - 我需要一个接受url参数的路由,该参数将加载一个视图,其中包含与提供的url参数相对应的数据
答案 0 :(得分:1)
您可以关注google的任何教程,您只想为自己替换一件事:数据源。通常,数据是通过REST api从数据库加载的,但由于您不需要在db中存储数据,因此可以使用json-server
根据您的json文件提供REST API。