我如何检查它是否包含“true”的文本,如果是,则运行一段代码? http://api.roblox.com/ownership/hasasset?assetId=26943368&userId=13416513
答案 0 :(得分:0)
使用luasocket.http.request从您需要的网址获取文字,然后将其与“true”进行比较。
local http = require "socket.http"
local text = http.request(url)
if text == "true" then
-- it's true!
end