无法从GUI上传文件

问题描述 投票:0回答:1

我试图在自定义视图中上传文件。该文件是以如下形式上传的。

<form id="logo-splash-form" action="<%=luci.dispatcher.build_url("admin/system/upload")%>">
    <input id="logo-splash" name="logo-splash" type="file" />
    <input type="button" value="Upload" onclick="fileUpload('logo-splash')" />
</form>

用下面的js函数:

function fileUpload(fileName)
{
    var url = '<%=luci.dispatcher.build_url("admin/system/upload")%>';
    document.getElementById('logo-splash-form').enctype = 'multipart/form-data';
    document.getElementById('logo-splash-form').submit();
}

和下面的控制器。

function upload()
    local fp
    local sys = require "luci.sys"  
    local path = "/etc/mypath/"
    local ul = luci.http.formvalue("logo-splash")
    local file   = "test.jpg"
    -- FILE UPLOAD  
    luci.http.setfilehandler(
        function(meta, chunk, eof)
            if not fp then
                fp = io.open(path .. meta.file, "w")
            end
            if chunk then
                fp:write(chunk)
            end
            if eof then
                fp:close()
            end
        end
    )
    luci.http.redirect(luci.dispatcher.build_url('admin/system/splashscreen'))
end

然而,什么都没有发生。文件没有被创建,我也没有在控制台看到任何错误信息,包括 logread.

我不知道为什么 setfilehandler 似乎没有被调用,我现在被这个问题卡住了......

我是用一个小的jpg文件test.jpg测试上传的,10ko左右,所以我觉得不是大小问题。

如何使 setfilehandler 成功上传我的文件?先谢谢你。

javascript html lua openwrt luci
1个回答
0
投票

最后我用一个提交按钮代替了按钮,没有调用任何函数。

<input type="submit" class="cbi-input-apply" value="<%:Upload%>" />

我所使用的上传过程与你能看到的类似于 controller/admin/system.lua,在函数中 action_flashops()

© www.soinside.com 2019 - 2024. All rights reserved.