gpt4 book ai didi

javascript - 如何使用 Restangular 调用自定义查询 URL?

转载 作者:数据小太阳 更新时间:2023-10-29 05:05:55 27 4
gpt4 key购买 nike

我想使用 Restangular customGET 方法在查询参数中调用带有特殊字符的 URL。我正在为我的 API 使用 Loopback,它使用方括号进行查询。似乎在 Restangular 中是不允许的。

我想调用以下 URL。

/api/v1/employees/findOne?filter[where][salesCode]=SC2

或者这个但不确定如何。

/api/v1/employees?filter[where][salesCode]=SC2

我尝试跟随但没有成功。

Restangular.all("employees").customGET("findOne", {filter + "%5Bwhere%5D%5BsalesCode%5D": newValue});

Restangular.all("employees").customGET("findOne", {filter[where][salesCode]: newValue});

作为变通方法,我正在使用 $http,但 hack 终归是 hack。

最佳答案

你应该这样做:

Restangular.all("employees").customGET("findOne", {"filter[where][salesCode]": newValue});

应该这样做 :).

关于javascript - 如何使用 Restangular 调用自定义查询 URL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21341385/

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