来自 OpenwRT 的 Luci lua 代码解释

Posted

技术标签:

【中文标题】来自 OpenwRT 的 Luci lua 代码解释【英文标题】:explanation of Luci lua code from OpenwRT 【发布时间】:2017-10-01 16:40:31 【问题描述】:

我从 /luci/controller/admin 路径获得了一个 .lua 代码

module("luci.controller.admin.network",package.seeall)
function index()
    local e
    e=node("admin","tab")
    e.target=firstchild()
    e.title=_("tab")
    e.order=60
    e.index=true
end

e.order=60e.index=true 是什么意思?如何在选项卡下拉列表下添加新的子类别?有什么建议吗?

【问题讨论】:

【参考方案1】:

我明白了。 e.order=60 表示选项卡的位置,e.index=true 表示可以添加子元素

【讨论】:

以上是关于来自 OpenwRT 的 Luci lua 代码解释的主要内容,如果未能解决你的问题,请参考以下文章

openWRT报错

openwrt luci web分析

Luci

如何在 OpenWRT Luci Web Interface 中添加新页面?

openwrt 里LUA程序怎么获取POST数据

openwrt(luci中文)