作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道如何使用 javascript 以编程方式美化 JSON。这样我们就可以实现:
var obj = {"hello":"world", "Test":["hello"]}
document.body.innerHTML = "";
document.body.appendChild(document.createTextNode(JSON.stringify(obj, null, 4)));
但我尝试用 Angular JS 来做。但我无法实现这一点。这是我的步骤:
<div class="btn btn-primary" ng-click="test()">Press</div>
<textarea json-formatter rows="20" cols="140" ng-model="json">
</textarea>
$scope.test=function(){
var json=JSON.stringify($scope.json, null, "\t");
/*here if $scope.json is {"hello":"world", "Test":["hello"]}
then json return "{\"hello\":\"world\", \"Test\":[\"hello\"]}" */
}
这里如果$scope.json
是{"hello":"world", "Test":["hello"]}
然后 json
返回 "{\"hello\":\"world\",\"Test\":[\"hello\"]}"
。之后,我现在不知道如何将美化 json 显示到同一文本区域。如何解决这个问题。还有其他方法吗请建议我?
最佳答案
您可以在代码中使用内置过滤器
{{dataObject | json}}
会美化你的json,试试吧。
这是一个工作示例:
关于javascript - 如何在 Angular JS 中以编程方式美化 JSON?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29547860/
我是一名优秀的程序员,十分优秀!