lua 函数转字符串传递,然后转换成函数再执行

function TestStrFunc()

    Log.Log(“–TestStrFunc “)

end

 

        –把函数序列化成字符串来保存

        fstr = string.dump(TestStrFunc)

        Log.Log(‘fstr type =’..tostring( type(fstr)))

        Log.Log(‘fstr =’..tostring(fstr))

 

        –把字符串反序列化成函数

        local func = loadstring(fstr)

        if func then

            func()

        end

 

举例

module(“Util”, package.seeall)

 

— 执行服务器下发的Lua代码

function ExecuteLuaString(luaStr)

    if luaStr == nil or luaStr == “” then

        return

    end

 

    local handle = loadstring(luaStr)

    if handle == nil then

        return

    end

 

    local r, e = pcall(handle)

    if r == false then

        Log.Error( “CallLFail:”..tostring(e))

    end

end

    原文作者:Mr卜颛
    原文地址: https://blog.csdn.net/qq_15559109/article/details/108127514
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞