我如何告诉 Angular 将 scope.shits 中的数据注入 ShitDetail 控制器?
function ShitCtrl($scope) {
$scope.shits = [
{
"id": "goMedus",
"name": "goMedus",
"snippet": "Fast just got faster with Nexus S.",
"copy": "hallo"
},
这是教程中通过 json 完成的数据注入。我想获得奥斯卡麦克,因为我在使用 grails urlMappings 连接到外部 json 时遇到了麻烦,所以我想稍后再做。任何帮助表示赞赏
function ShitDetailCtrl($scope, $routeParams) {
$scope.shitId = $routeParams.shitId;
}
我的看法是这样的:
TBD: detail view for {{shitId}} and {{shitName}}
shitId 得到渲染,而 shitName 没有。