gpt4 book ai didi

json - ng-init json 对象

转载 作者:行者123 更新时间:2023-12-05 00:43:00 25 4
gpt4 key购买 nike

我使用 angularjs (ng-init),我想将值赋给变量作为 jsonObj。

我尝试了这个,但它不起作用。

ng-init="percentObj = [{ "value":40,"color":"#F5A623" },{ "value":60,"color":"#F5A623" }];

还有一个问题我想像这样赋值

percentObj = [{ "value": parseInt($scope.projectData[0].value),"color":"#F5A623" },{ "value":  parseInt($scope.projectData[0].value),"color":"#F5A623" }]

如何解决这个问题??

谢谢

最佳答案

您可以使用窗口对象来设置您的 json :

<script type="text/javascript">
window.data= {awesome:1};
</script>

View :

<div ng-controller="myCntrl" ng-init="init('data')">

Controller :

function myCntrl($scope) {
$scope.init = function (settings) {
settings = window[settings];
console.log(settings.awesome); //1
};
}

关于json - ng-init json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25644936/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com