1

我需要处理一些数据并在网页上显示处理日志。(大约 300 行文本)。
我尝试使用标签。起初它工作得很好 - 页面变得可滚动并且可以看到所有文本。但是在大约 100 个标签页面变得没有响应之后。
如何管理这个任务?
(我试图在 webcomponents.org 上寻找其他一些组件,但找不到任何东西。)

4

2 回答 2

6

TextArea

我尝试了 Leif Åstrand 的回答中提到的一种方法,使用TextArea.

当我预加载 300 条短线时,没问题。单击一个按钮一次添加 10 多行可以顺利进行。使用 Web 浏览器的窗口滚动条向上和向下滚动可以顺利进行。

我在连接到 MacBook Pro Retina 的外部 4K 显示器上的 macOS High Sierra 上的浏览​​器 Safari 11.1.2 中使用了 Vaadin 10.0.4 和 Java 10.0.1(Azul Systems 的 Zulu )。

这是整个 Vaadin 应用程序。

package com.basilbourque.example;

import com.vaadin.flow.component.button.Button;
import com.vaadin.flow.component.dependency.HtmlImport;
import com.vaadin.flow.component.orderedlayout.VerticalLayout;
import com.vaadin.flow.component.textfield.TextArea;
import com.vaadin.flow.router.Route;

import java.time.Instant;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.stream.Collectors;

/**
 * The main view contains a button and a template element.
 */
@HtmlImport ( "styles/shared-styles.html" )
@Route ( "" )
public class MainView extends VerticalLayout {
    TextArea textArea;

    // Constructor.
    public MainView () {
        this.setWidth( "100%" );

        this.textArea = new TextArea( "Logs" );
        this.textArea.setWidth( "100%" );
        this.textArea.setReadOnly( true );
        this.appendRows( 300 );

        Button button = new Button( "Add 10 more rows" , event -> {
            this.appendRows( 10 );
        } );

        this.add( button , this.textArea );
        this.setClassName( "main-layout" );
    }

    private void appendRows ( int countRows ) {
        List< String > entries = new ArrayList<>( countRows );
        for ( int i = 1 ; i <= countRows ; i++ ) {
            entries.add( Instant.now().toString() );
        }
        Collections.reverse( entries ); // Put newest on top.
        String s = entries.stream().collect( Collectors.joining( "\n" ) );
        textArea.setValue( s + "\n" + this.textArea.getValue() );
    }
}

在此处输入图像描述

于 2018-08-23T02:46:33.733 回答
5

您可以将所有文本仅放在一个组件中,而不是为每一行创建一个单独的组件。如果您希望文本中的换行符(即\n)换行到下一行,您可以white-space将元素的 CSS 属性调整为 egpre-linepre-wrap代替。您可以使用component.getElement().getStyle().set("white-space", "pre-wrap").

如果您想直观地指示文本的状态,另一种选择可能是只读TextArea组件。

我还建议使用该Span组件而不是Label在 Vaadin 10中。在浏览器中Label使用该<label>元素实际上仅用于标记输入字段,而不是用于通用文本夹头。

于 2018-08-21T06:03:51.733 回答