OpenResty 簡單編寫乙個Module

2022-01-14 21:09:50 字數 453 閱讀 4547

使用 lua module 來進行 lua **的復用是推薦的做法。然後在使用者**中直接用require()來呼叫

module**:

local mytest ={}

function mytest:getid()

local str = "

123"

return

strend

return mytest

開頭有這樣一行**module(...),這是為了模組名以檔名命名

將檔案放到「/usr/local/openresty/lualib/lib」中(或設定lua_package_path)

呼叫:

local test = require "

lib.mytest

"local str =test:getid()

ngx.say(str)

OpenResty 簡單編寫乙個Module

使用 lua module 來進行 lua 的復用是推薦的做法。然後在使用者 中直接用require 來呼叫 module local mytest function mytest getid local str 123 return strend return mytest 開頭有這樣一行 mod...

編寫乙個簡單的shell

include include include include include include include include void getloginname void gethostname void getdir p printf s p int main char argv 32 char...

編寫乙個簡單的死鎖

public class dead lock1 class runnable1 implements runnable catch exception e class runnable2 implements runnable catch exception e obj1 和 obj2 都是屬於類的...