简体   繁体   中英

angualrjs: escape slashes from parameter value passed to $http.get

I am using a simple HTTP GET call in angularjs and passing some query string parameters.

One of the param is a date. Let's say "update" and the value passed is 03/20/2015.

When I make $http.get call passing the "update" as query string parameter,

the request is sent as

http://myservice.com/services/products?update=03%2F20%2F2015

I would like to send it as

http://myservice.com/services/products?update=03/20/2015

Any help is greatly appreciated.

我建议在日期中用破折号代替斜杠:03/20/2015 在这里您可以找到更多信息

%2F只是'/'的编码URL,您的后端可以自动对其进行解码。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM