function myfunction(msg)
print("this is msg fun " .. msg);
endlocal fun =_G["myfunction"];
if fun then
fun("is ok");
end
lua 根据函数名字符串来执行函数
时间: 2024-12-29 16:13:51
function myfunction(msg)
print("this is msg fun " .. msg);
endlocal fun =_G["myfunction"];
if fun then
fun("is ok");
end
lua 根据函数名字符串来执行函数