日日操夜夜添-日日操影院-日日草夜夜操-日日干干-精品一区二区三区波多野结衣-精品一区二区三区高清免费不卡

公告:魔扣目錄網(wǎng)為廣大站長提供免費收錄網(wǎng)站服務(wù),提交前請做好本站友鏈:【 網(wǎng)站目錄:http://www.ylptlb.cn 】, 免友鏈快審服務(wù)(50元/站),

點擊這里在線咨詢客服
新站提交
  • 網(wǎng)站:51998
  • 待審:31
  • 小程序:12
  • 文章:1030137
  • 會員:747

php小編小新將為你介紹如何使用gopher-lua在Lua函數(shù)中定義一個帶有預(yù)定義表參數(shù)的函數(shù),并且在函數(shù)內(nèi)部訪問該表。gopher-lua是一個Go語言實現(xiàn)的Lua解釋器,可以在Go程序中嵌入和執(zhí)行Lua腳本。通過合理的代碼設(shè)計和使用,我們可以輕松實現(xiàn)這一目標。接下來,我們將詳細講解如何做到這一點。

問題內(nèi)容

我知道如何定義 Go 函數(shù)并將其設(shè)置為全局(文檔中的 Double 示例)。但是,如果這個函數(shù)的參數(shù)應(yīng)該是一個預(yù)定義的表呢?

function calling_this_function_would_be_required(predefined_table)
  print(predefined_table["something"])
end

登錄后復(fù)制

IMAP 服務(wù)器 Dovecot 確實提供了類似上面的內(nèi)容:https://doc.dovecot.org/configuration_manual/authentication/lua_based_authentication/#examples

我還想提供帶有表格(甚至用戶數(shù)據(jù))的預(yù)定義函數(shù)。但我真的不知道如何實現(xiàn)這一目標。

將表設(shè)置為全局很容易(L.SetGlobal(…)),但如何將其添加到預(yù)期函數(shù)中?

在 Go 中添加一些函數(shù)

func CallMe(L *lua.LState) {
    // How do I add a table as argument??
}

func Foo() {
    L := NewState()
    defer L.Close()

    t := L.NewTable()
    t.RawSetString("example", lua.LString("some_value"))

    // I do not want a global table. I would like an expected Lua function that has _this_ table as argument
    L.SetGlobal("predefined_table", t)

    // Not even sure with his...
    L.SetGlobal("calling_this_function_is_required", L.NewFunction?llMe)) 
}

登錄后復(fù)制

如果有人能給我一點啟發(fā),那就太好了:-)提前致謝

解決方法

根據(jù) @koyaanisqatsi 的回答,我找到了如何在 Go 中工作。

Go代碼示例:

package main

import (
    "fmt"

    "github.com/yuin/gopher-lua"
)

type Person struct {
    Name       string
    GivenName  string
    Street     string
    PostalCode string
    City       string
}

func main() {
    p := &Person{
        Name:       "Mustermann",
        GivenName:  "Max",
        Street:     "Sackgasse 19",
        PostalCode: "36304",
        City:       "Alsfeld",
    }

    L := lua.NewState()
    defer L.Close()

    if err := L.DoFile("sample.lua"); err != nil {
        panic(err)
    }

    t := L.NewTable()
    t.RawSetString("name", lua.LString(p.Name))
    t.RawSetString("given_name", lua.LString(p.GivenName))
    t.RawSetString("street", lua.LString(p.Street))
    t.RawSetString("postal_code", lua.LString(p.PostalCode))
    t.RawSetString("city", lua.LString(p.City))

    if err := L.CallByParam(lua.P{
        Fn:      L.GetGlobal("call_me"),
        NRet:    1,
        Protect: true,
    }, t); err != nil {
        panic(err)
    }

    ret := L.Get(-1) // returned value
    L.Pop(1)         // remove received value

    fmt.Println("The result of the Lua function is:", ret)
}

登錄后復(fù)制

sample.lua文件:

function call_me(tbl)
    print(tbl.name)
    print(tbl.given_name)
    print(tbl.street)
    print(tbl.postal_code)
    print(tbl.city)

    return 0
end

登錄后復(fù)制

結(jié)果:

Mustermann
Max
Sackgasse 19
36304
Alsfeld
The result of the Lua function is: 0

登錄后復(fù)制

分享到:
標簽:Go語言
用戶無頭像

網(wǎng)友整理

注冊時間:

網(wǎng)站:5 個   小程序:0 個  文章:12 篇

  • 51998

    網(wǎng)站

  • 12

    小程序

  • 1030137

    文章

  • 747

    會員

趕快注冊賬號,推廣您的網(wǎng)站吧!
最新入駐小程序

數(shù)獨大挑戰(zhàn)2018-06-03

數(shù)獨一種數(shù)學(xué)游戲,玩家需要根據(jù)9

答題星2018-06-03

您可以通過答題星輕松地創(chuàng)建試卷

全階人生考試2018-06-03

各種考試題,題庫,初中,高中,大學(xué)四六

運動步數(shù)有氧達人2018-06-03

記錄運動步數(shù),積累氧氣值。還可偷

每日養(yǎng)生app2018-06-03

每日養(yǎng)生,天天健康

體育訓(xùn)練成績評定2018-06-03

通用課目體育訓(xùn)練成績評定