OpenWrt的luci web管理器新增新選單(二)

fulinux發表於2015-10-08

繼上一篇:OpenWrt的luci web管理器新增新選單


Call的方式:

在/usr/lib/lua/luci/controller/admin/new_tab.lua 檔案中新增如下紅色部分的內容:

-- Copyright 2008 fulinux <fulinux@sina.com>
-- Licensed to the public under the Apache License 2.0.


local fs = require "nixio.fs"


module("luci.controller.admin.new_tab", package.seeall) --notice that new_tab is the name of the file new_tab.lua
function index()
        entry({"admin", "new_tab"}, firstchild(), "New tab", 30).dependent=false  --this adds the top level tab and defaults to the
        entry({"admin", "new_tab", "tab_from_cbi"}, cbi("admin_myapp/cbi_tab"), "CBI Tab", 1)  --this adds the first sub-tab that is
        entry({"admin", "new_tab", "tab_from_view"}, template("admin_myapp/view_tab"), "View Tab", 2)  --this adds the second sub-ta
        entry({"admin", "new_tab", "action_counter"}, call("counter"), _("Click here"), 3).leaf = true
end


function counter ()
        local i = 0
        if fs.access("/var/run/test") then
                i = tonumber((fs.readfile("/var/run/test")))
        end
        i = i + 1
        fs.writefile("/var/run/test", string.format("%d\n", i))
        -- luci.http.redirect(luci.dispatcher.build_url("admin/new_tab/tab_from_view"))
        luci.http.write(tostring(i))
        return
end


這樣你每次點選下面的選單時都會跳轉到一個頁面顯示你點選此選單的次數:



相關文章