根据传递的变量,以角度js从响应对象中检索字段

时间:2017-05-24 17:33:54

标签: angularjs

我正在尝试使用我在response.data中获取的字段之一,但该字段是传入控制器内部函数的字段。所以,我有一个这样的功能:

function driverInfo(interface){
apiserv.get('blahblah').then(function(response){
if (response.data.paramInterfacePassedAbove == null){
        //do when true
}
})
}

1 个答案:

答案 0 :(得分:1)

假设您的意思是使用driverInfo中的字段名称调用response.data函数,并且您需要在default_前添加字段名,则可以更改代码以下内容:

function driverInfo(interface){
  apiserv.get('blahblah').then(function(response){
    if (response.data['default_' + interface] == null){
      //do when true
    }
  })
}