J'essaie d'afficher la valeur de la clé d'un objet json en le parcourant par itération. Voici mon code
<html ng-app>
<head>
<script data-require="angular.js@1.6.0" data-semver="1.6.0" src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.0/angular.js"></script>
<link rel="stylesheet" href="style.css" />
<script src="script.js"></script>
</head>
<body ng-init='x = {"$xy":"boost-combinations@$q,article,false,10"}'>
<li ng-repeat="(k,v) in x">{{k}} : {{v}}</li>
<h1>Hello Plunker!</h1>
</body>
</html>
Je veux juste afficher comme $xy : boost-combinations@$q,article,false,10.