문제

I'm using AQuery to feed an AutocompleteTextView in my app from a web service. But I got AjaxStatus error -103. What means this status error ?

Thanks in advance for your answer

도움이 되었습니까?

해결책

public static final int TRANSFORM_ERROR = -103;

It means the http response cannot be transformed to the desired class.

Example: Using JSONObject as type when the result is an JSONArray. Using Bitmap as type when the result is in html file. Using JSONObject as type but the result is a malformed JSON string etc...

Try hit the url on a browser and see what's being returned. :)

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top