传递参数以获取请求

时间:2018-12-24 06:10:31

标签: javascript yii2

我收到了这样的reqquest(API密钥已更改):

  

http://geohelper.info/api/v1/cities?apiKey=dddff&locale[lang]=uk&filter[name]=%D0%9F%D0%B5%D1%82%D1%80%D0%BE%D0%B7

在get请求中,我需要传递一个参数filter [name]。

我的尝试:

$.get(
                "http://geohelper.info/api/v1/cities?apiKey=ssss&locale[lang]=uk",
                {
                    filter[name]: input,
                },
            )

但是在这种情况下,返回错误:

  

未捕获的ReferenceError:未定义findCity       在HTMLInputElement.oninput

如何传递参数?

0 个答案:

没有答案