我正在尝试使用我在response.data中获取的字段之一,但该字段是传入控制器内部函数的字段。所以,我有一个这样的功能:
function driverInfo(interface){
apiserv.get('blahblah').then(function(response){
if (response.data.paramInterfacePassedAbove == null){
//do when true
}
})
}
答案 0 :(得分:1)
假设您的意思是使用driverInfo
中的字段名称调用response.data
函数,并且您需要在default_
前添加字段名,则可以更改代码以下内容:
function driverInfo(interface){
apiserv.get('blahblah').then(function(response){
if (response.data['default_' + interface] == null){
//do when true
}
})
}