0

我有以下类型的 html

<html>
    <head>
        <title>Upload a file please</title>
    </head>
    <body>
        <h1>Please upload a file</h1>
        <form method="post" action="http://localhost:8080/service/uploadFile" enctype="multipart/form-data">
            <input type="text" name="name"/>
            <input type="file" name="file"/>
            <input type="submit"/>
            <input type="hidden" name="smallSize" value="50x50">
            <input type="hidden" name="mediumSize" value="100x100">
            <input type="hidden" name="largeSize" value="150x150">
        </form>
    </body>
</html>

我想使用 Vaadin Uploadcomponent来做到这一点?我怎样才能做到这一点?

4

3 回答 3

0

您不能将普通的 html 页面与处理“结果”的 vaadin 混合使用。

他们要走的路是将vaadin嵌入到您的html页面中。

看这里:

https://vaadin.com/de/book/vaadin7/-/page/advanced.embedding.html

于 2013-05-21T06:57:37.890 回答
0

我为此使用https://vaadin.com/directory#addon/easyuploads。例子:

final UploadField uploadField = new UploadField();
Button b = new Button("Show value");
b.addListener(new Button.ClickListener() {        
    public void buttonClick(ClickEvent event) {
        Object value = uploadField.getValue();
        mainWindow.showNotification("Value:" + value);
    }
});
于 2013-05-21T08:55:54.990 回答
0

您可以使用 vaadin-upload 上传一张带有属性 (maxfiles) 的图片

于 2019-06-07T06:12:02.880 回答