JSONObject()出错 - Kotlin

时间:2017-12-25 17:26:20

标签: kotlin

我正在尝试使用Volley Library进行登录视图。 似乎“jsonobj”总是空的。

    val jsonobj = JSONObject()

    loginBtn.setOnClickListener {

        jsonobj.put("mail", mailTxt.text)
        jsonobj.put("pass", passTxt.text)

        val que = Volley.newRequestQueue(this@MainActivity)
        val req = JsonObjectRequest(Request.Method.POST, url, jsonobj,
                Response.Listener{
                    response ->
                    toast(response["error"].toString())

               }, Response.ErrorListener {
               toast("Error")
           })
        que.add(req)
      }
    }
  } 

0 个答案:

没有答案