繁体   English   中英

Android-我的AsyncTask中的onPostExecute没有被调用

[英]Android - My onPostExecute in AsyncTask is not getting called

因此,我一直试图在Django REST Framework API中获取JSON对象。 在我的AsyncTask的onPostExecute中调用了此算法,但似乎没有像在调试时那样调用它。 我的logcat中似乎没有致命的东西,除了我的数组中没有任何东西应该包含来自DRF API的数据。

我有两个活动从WSAdapter类调用AsyncTask。 一种用于登录,另一种用于列出登录后的所有帖子。

登录工作正常,但列出帖子却没有。

我的代码如下:

Posts.java

public class Posts extends AppCompatActivity {

    TextView postsSect;
    Button postsDoneBtn;
    WSAdapter.SendAPIRequests PostsHelper;
    StringBuilder postsBuffer = new StringBuilder();

    @Override
    protected void onResume(){
        super.onResume();
        PostsDetails postDetailsHelper = new PostsDetails();
        postDetailsHelper.ListPosts();
    }

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_posts);

        PostsDetails postDetailsHelper = new PostsDetails();

        postsDoneBtn = (Button) findViewById(R.id.PostsDoneButton);

        postDetailsHelper.callPostDetails("192.168.0.18:8000/api");
        postDetailsHelper.ListPosts();
        postDetailsHelper.postDetailsCalled('n');

        postsDoneBtn.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                startActivity(new Intent(Posts.this, MainActivity.class));

            }
        });
    }

    public class PostsDetails {
        //String post_title, post_content;
        ArrayList<Integer> post_id = new ArrayList<Integer>();
        ArrayList<String> post_title = new ArrayList<String>();
        ArrayList<String> post_content = new ArrayList<String>();

        boolean isPDCalled;

        // sets if Post details are called
        boolean postDetailsCalled(char called) {
            if (called == 'y'){
                return true;
            }
            return false;
        }

        // checks if postsDetails functions are called for AsyncTask
        boolean getIsPDCalled(){
            return isPDCalled;
        }

        // calls the execute for AsyncTask
        private void callPostDetails(String theurl){
            PostsHelper = new WSAdapter.SendAPIRequests();
            // sets if post details are called
            postDetailsCalled('y');
            // executes AsyncTask
            PostsHelper.execute(theurl);
        }

        // sets values for the posts arrays
        public void setPost(int p_id, String p_title, String p_content) {
            post_id.add(p_id);
            post_title.add(p_title);
            post_content.add(p_content);
        }

        // Lists the posts from the database
        public void ListPosts() {
            /////////// add functionality if a post was deleted and was clicked
            postsSect = (TextView) findViewById(R.id.PostsSection);
            postsSect.setText(post_title.get(post_title.size()) + "\n");
            for (int i = post_id.size() - 1; i > 0; i--)
            {
                postsSect.append(post_title.get(i));
            }
        }
    }
}

WSAdapter.java

public class WSAdapter extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    }

    static public class SendAPIRequests extends AsyncTask<String, String, String> {

        // Add a pre-execute thing

        @Override
        protected String doInBackground(String... params) {

            Log.e("TAG", params[0]);
            Log.e("TAG", params[1]);
            String data = "";

            HttpURLConnection httpURLConnection = null;
            try {

                // Sets up connection to the URL (params[0] from .execute in "login")
                httpURLConnection = (HttpURLConnection) new URL(params[0]).openConnection();

                // Sets the request method for the URL
                httpURLConnection.setRequestMethod("POST");

                // Tells the URL that I am sending a POST request body
                httpURLConnection.setDoOutput(true);

                // To write primitive Java data types to an output stream in a portable way
                DataOutputStream wr = new DataOutputStream(httpURLConnection.getOutputStream());
                // Writes out a byte to the underlying output stream of the data posted from .execute function
                wr.writeBytes("postData=" + params[1]);
                // Flushes the postData to the output stream
                wr.flush();
                wr.close();

                // Representing the input stream
                InputStream in = httpURLConnection.getInputStream();

                // Preparing input stream bytes to be decoded to charset
                InputStreamReader inputStreamReader = new InputStreamReader(in);
                StringBuilder dataBuffer = new StringBuilder();

                // Translates input stream bytes to charset
                int inputStreamData = inputStreamReader.read();
                while (inputStreamData != -1) {
                    char current = (char) inputStreamData;
                    inputStreamData = inputStreamReader.read();
                    // concatenates data characters from input stream
                    dataBuffer.append(current);
                }
                data = dataBuffer.toString();
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                // Disconnects socket after using
                if (httpURLConnection != null) {
                    httpURLConnection.disconnect();
                }
            }

            Log.e("TAG", data);
            return data;
        }

        @Override
        protected void onPostExecute(String result) {
            super.onPostExecute(result);
            // expecting a response code fro my server upon receiving the POST data
            Log.e("TAG", result);

            Posts.PostsDetails postsHelper = new Posts().new PostsDetails();

            // For posts
            try {
                if (postsHelper.getIsPDCalled()){
                    JSONObject pJObj = new JSONObject(result);
                    JSONArray pJObjArray = pJObj.getJSONArray("posts");

                    for (int i = 0; i < pJObjArray.length(); i++) {
                        JSONObject pJObj_data = pJObjArray.getJSONObject(i);
                        postsHelper.setPost(pJObj_data.getInt("id"), "post_title", "post_content");
                    }
                }

            } catch (JSONException e) {
                //Toast.makeText(JSonActivity.this, e.toString(), Toast.LENGTH_LONG).show();
                Log.d("Json","Exception = "+e.toString());
            }
        }
    }
}

Login.java

public class Login extends AppCompatActivity {

    Button LoginButton;
    EditText uUserName, uPassWord;
    WSAdapter.SendAPIRequests AuthHelper;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_login);

        //SetupHomeBtn = (ImageButton) findViewById(R.id.SetupHomeBtn);

        LoginButton = (Button) findViewById(R.id.LoginButton);

        uUserName = (EditText) findViewById(R.id.LoginUserBox);
        uPassWord = (EditText) findViewById(R.id.LoginPassBox);

        //AuthHelper = new WSAdapter().new SendDeviceDetails();

        // Moves user to the main page after validation
        LoginButton.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                // gets the username and password from the EditText
                String strUserName = uUserName.getText().toString();
                String strPassWord = uPassWord.getText().toString();

                // API url duh
                String APIUrl = "http://192.168.0.18:8000/token-auth/";

                // If the user is authenticated, then transfer to the MainActivity page
                if (APIAuthentication(strUserName, strPassWord, APIUrl)){
                    startActivity(new Intent(Login.this, Posts.class));
                }
            }
        });

    }

    private boolean APIAuthentication(String un, String pw, String url){
        // when it wasn't static -> AuthHelper = new WSAdapter().new SendAPIRequests();
        AuthHelper = new WSAdapter.SendAPIRequests();

        JSONObject postData = new JSONObject();
        try {
            // Attempt to input info to the Django API
            postData.put("username", un);
            postData.put("password", pw);

            // Putting the data to be posted in the Django API
            AuthHelper.execute(url, postData.toString());

            return true;
        } catch (JSONException e) {
            e.printStackTrace();
        }

        return false;
    }
}

我期望我的onPostExecute被调用并存储我的posts数组的数据。

好的,这是异步任务的一个很好的例子。 这里的问题是,当您调用异步任务时,即使异步任务尚未完成,下面的代码也将继续执行。 那么在您的情况下会发生什么:

  • 您获取帖子,然后要求在异步功能仍在获取帖子的确切时刻显示它们。 因此,列表当然是空的。

您可以使用await关键字解决此问题。 此关键字停止执行其余代码,直到执行了该行。 所以改变:

postDetailsHelper.callPostDetails("192.168.0.18:8000/api");

至:

await postDetailsHelper.callPostDetails("192.168.0.18:8000/api");

现在登录成功的原因是因为您在if语句中调用了该函数。 如果您先将该函数的返回值存储在布尔值中,那么它也不起作用。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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