将字符串转换为要在通用调用中使用的变量

时间:2019-01-31 21:13:32

标签: javascript ajax callback call apiclient

我想使用api-client创建通用调用。

我想简化我的功能:

client.hello(params).then(
    (response) => {
         console.log(response)
    },
    (error) => {
         console.log(error)
    }
)
client.bye(params).then(
    (response) => {
         console.log(response)
    },
    (error) => {
         console.log(error)
    }
)

使用独特的功能,例如:

generic=window['hello']

client.generic(params).then(
    (response) => {
         console.log(response)
    },
    (error) => {
         console.log(error)
    }
)

使用window ['hello']无效。

0 个答案:

没有答案