我正在使用改装。这是我的代码: 改造api接口:
<html>
<head>
</head>
<body>
<div id="head">
foo
</div>
<div id="container">
<div id="left">
bar
</div>
<div id="right">
baz
</div>
</div>
</body>
</html>
}
然后我如何设置我的值
ublic interface PlaceApiRequestInterface {
@GET("/maps/api/place/nearbysearch/json")
//synch request: all wait on the same thread
public Response getJson(@Query("location") String location,
@Query("radius") String radius,
@Query("rankby") String rankby,
@Query("types") String types,
@Query("key") String key);
我得到了这个答案:
{ “html_attributions”:[], “结果”:[], “status”:“INVALID_REQUEST” } 块引用
可以帮我发现这里有什么问题吗? 感谢。