提醒返回的数据

时间:2017-10-04 11:35:23

标签: angularjs lua

我正在使用AngularJs4。我正在尝试验证服务器端的每个用户。服务器端包含一个lua页面并返回一个名称。

**



var result = this._http.post("http://192.168.0.102:8000/user.lua",uname,pass)
      
      alert(result)




user.lua



require "string"
function handle(r)
local POST, POSTMULTI = r:parsebody()
local name = POST['uname']
local pass = POST['pass']
r.content_type = "text/plain"
if r.method == 'POST' then
r:puts("\n...The Log Detailsss...\n\n") 
        for k, v in pairs( POST,POSTMULTI ) do
          r:puts( string.format("%s: %s\n\n", k, v) )
--file:write(string.format("%s: %s\n\n", k, v))
return "hello"
    end  
    return "name"
end




**

运行应用程序时,它会像...一样重新运行 enter image description here

我该怎么做..请帮忙..

1 个答案:

答案 0 :(得分:1)

您需要 stringify 响应以便在警告中显示

var result = this._http.post("http://192.168.0.102:8000/user.lua",uname,pass)
alert(JSON.stringify(result));