local postStr = tostring(require(“framework.json”).encode(data))
request:setPOSTData(postStr, string.len(postStr))
postStr是个json, 而参数要求string,
怎么样适配下?
local postStr = tostring(require(“framework.json”).encode(data))
request:setPOSTData(postStr, string.len(postStr))
postStr是个json, 而参数要求string,
怎么样适配下?