gpt4 book ai didi

javascript - 按名称/键回调 json 值

转载 作者:行者123 更新时间:2023-12-02 15:24:29 24 4
gpt4 key购买 nike

使用此函数,我尝试按名称/ key 从 json url 获取许可证名称我的 json 看起来像这样:

[{"Gallery":true,"Responsive":true,"Main":true,"Seasonal":true}]

js:

function getLicenseName(name, callback){
var license = 'default'
$.getJSON(adl+'DesignTemplateBuilder.aspx?GetLicense=1', function(data){
/*
licence = data[0].Gallery;
respValue = data[0].Responsive;
seasonalValue = data[0].Seasonal;
*/
licence = data[0].name;
callback(licence)
});
}
getLicenseName(name, function(Responsive) {
console.log(name);
//this returns empty right now
});

我需要的是使用类似的方法获取truefalse

getLicenceName(Gallery);

我需要在我的函数中使用它,例如:if(getLicenceName(Gallery)=false)...

最佳答案

function getLicenseName(callback){
$.getJSON(adl+'DesignTemplateBuilder.aspx?GetLicense=1', function(data){
callback(data)
});
}
getLicenseName(function(data) {
console.log(data[0].Gallery);
//this returns empty right now
});

会成功的。

关于javascript - 按名称/键回调 json 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33804854/

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