标签: javascript angularjs json
假设我有一个函数,它返回作为变量传递给它的键的值。
$scope.data = {"name":"Mayur","Age":25,"Location":"Pune"} $scope.showValue = function(key) { return data.key } showValue('name') // it should return Mayur
我已经从html视图发送了密钥,并期望它返回给我相应的值。