EasyExcel模板填充以及填充多个sheet

# 一 需求:
有一个需求是根据不同维度去查询数据然后汇总,最后一行数据为合计数据,并且总计那行要合并单元格
# 二 思路
因为有7个维度,不想去写7个查询,然后分析之后发现只有汇总条件是可变的,其它数据一样
然后创建一个视图 在那个视图里汇总数据,后续就算改变字段啥的也方便
  以下是**部分关键代码**
```java
String nowDate = DateUtil.format(new Date(), "yyyy-MM-dd");
        String paramDate = DateUtil.format(vo.getDate(), "yyyy-MM-dd");
        int date = DateUtil.compare(DateUtil.parseDate(nowDate), DateUtil.parseDate(paramDate));
        String sql=null;
        if (vo.getStatisticDim().equals(DimensionEnum.UNITDIM.name())){
            //voList=baseMapper.queryStatisticByDim(vo);
            sql="t.construct_unit";
        }else if (vo.getStatisticDim().equals(DimensionEnum.PROMANAGEDIM.name())){
            vo.setConstructUnit(null);
            sql="t.discipline";
            //voList = baseMapper.queryByDimAndDiscipline(vo);
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITPROMANAGERDIM.name())){
            sql="t.construct_unit,t.project_implementation_manager_primary";
            //voList = baseMapper.queryByUNITPROMANAGERDIM(vo);
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITCITYCONSTRUCTDIM.name())){
            sql="t.construct_unit,t.district,t.construction_unit";
        }else if (vo.getStatisticDim().equals(DimensionEnum.PROVINCEPROMANAGERDIM.name())){
            vo.setConstructUnit(null);
            sql="t.project_management_manager_primary";
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITCONSTRUCTDIM.name())){
            sql="t.construct_unit,t.construction_unit";
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITPROCONSTRUCTDIM.name())){
            sql="t.construct_unit,t.construction_unit,t.project_name";
        }
        if (date<0){
            // // TODO: 2024/3/23  查历史数据
        }else {
            voList = baseMapper.queryByDimAndUnit(vo,sql);
        }
```

**xml**
```java
select rownum as index ,a.* from (
        select

        ${sql},
        sum(case when t.completion_report_completion_time is not null then 1 else 0 end) as videoFinishScale,
        sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time
        <![CDATA[ <= ]]> 10 and (t.acceptance_opinion <![CDATA[<>]]> '通过' or t.acceptance_opinion is null) then 1 else 0
        end) as videoTenunfinishScale,
        sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time
        <![CDATA[ <= ]]> 20 and (t.acceptance_opinion <![CDATA[<>]]> '通过' or t.acceptance_opinion is null) then 1 else 0
        end) as videoTwnunfinishScale,
        sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time
        <![CDATA[ <= ]]> 30 and (t.acceptance_opinion <![CDATA[<>]]> '通过' or t.acceptance_opinion is null) then 1 else 0
        end) as videoThiunfinishScale,
        sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time >
        30 and (t.acceptance_opinion <![CDATA[<>]]> '通过' or t.acceptance_opinion is null) then 1 else 0 end) as
        videoUnfinishScale,

        (sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time >
        30 and (t.acceptance_opinion <![CDATA[<>]]> '通过' or t.acceptance_opinion is null) then 1 else 0 end) /
        decode(sum(case when t.completion_report_completion_time is not null then 1 else 0 end),0,1,sum(case when
        t.completion_report_completion_time is not null then 1 else 0 end))) * 100 as videoUnfinishRate,


        sum(case when t.completion_report_completion_time is not null and sysdate-t.completion_report_completion_time >
        30 and t.acceptance_opinion = '通过' then 1 else 0 end) as videoUnfinishCount,
        sum(case when t.completion_report_completion_time is not null and t.acceptance_opinion = '通过' then 1 else 0 end)
        as videofinishCount,
        (sum(case when t.completion_report_completion_time is not null and t.acceptance_opinion = '通过' then 1 else 0
        end) / decode(sum(case when t.completion_report_completion_time is not null then 1 else 0 end),0,1,sum(case when
        t.completion_report_completion_time is not null then 1 else 0 end))) * 100 as videoRate,
        sum(case when t.acceptance_opinion = '通过' then 1 else 0 end) as videoCount,
        sum(case when t.acceptance_opinion = '通过' and (t.acceptance_failed_times = 0 or t.acceptance_failed_times is
        null) then 1 else 0 end) as videoPass
        from video_statistic_view t
        where 1=1<if test="vo.constructUnit != null and vo.constructUnit !='' ">and t.construct_unit in
        <foreach collection="vo.constructUnit" item="unit" open="(" separator="," close=")">
                #{unit}
            </foreach>
        </if>
        <if test="vo.projectImplementationManagerPrimary != null and vo.projectImplementationManagerPrimary != ''">
            and t.project_implementation_manager_primary like concat('%', #{vo.projectImplementationManagerPrimary},'%')
        </if>
        <if test="vo.district != null and vo.district != ''">
            and t.district like concat('%', #{vo.district},'%')
        </if>
        <if test="vo.constructionUnit != null and vo.constructionUnit != ''">
            and t.construction_unit like concat('%', #{vo.constructionUnit},'%')
        </if>
        <if test="vo.projectManagementManagerPrimary != null and vo.projectManagementManagerPrimary != ''">
            and t.project_management_manager_primary like concat('%', #{vo.projectManagementManagerPrimary},'%')
        </if>
        <if test="vo.projectName != null and vo.projectName != ''">
            and t.project_name like concat('%', #{vo.projectName},'%')
        </if>
        group by ${ sql}
        ) a order by index
```

# 三 easyexcel导出
##  3.1 根据维度导出
之前用过注解的方式导出,考虑到这次比较复杂一点就用模版填充的方式导出 ,刚做需求后面也很可能会改动,到时候也简单一点
```java
 // 根据维度查出数据
        List<VideoStatisticVO> voList1 = this.getVideoStatisticsByDim(vo, new ArrayList<>());
        List<VideoStatisticVO> voList=this.getVideoStatisticCount(voList1);
        String excelName=null;
        int num=1;
        if (vo.getStatisticDim().equals(DimensionEnum.UNITDIM.name())){
            excelName="建设单位维度汇总";
        }else if (vo.getStatisticDim().equals(DimensionEnum.PROMANAGEDIM.name())){
            excelName="项目管理专业维度汇总";
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITPROMANAGERDIM.name())){
            excelName="建设单位项目经理维度汇总";
            num = 2;
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITCITYCONSTRUCTDIM.name())){
            excelName="建设单位区县、施工单位维度汇总";
            num = 3;
        }else if (vo.getStatisticDim().equals(DimensionEnum.PROVINCEPROMANAGERDIM.name())){
            excelName="省管项目经理汇总";
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITCONSTRUCTDIM.name())){
            excelName="建设单位、施工单位汇总";
            num = 2;
        }else if (vo.getStatisticDim().equals(DimensionEnum.UNITPROCONSTRUCTDIM.name())){
            excelName="建设单位、项目、施工单位汇总";
            num = 3;
        }
        try {
            ClassPathResource classPathResource = null;

            classPathResource = new ClassPathResource("/template/"+excelName+".xlsx");
          
            response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
            response.setHeader("content-Type", "application/vnd.ms-excel");
            response.setCharacterEncoding("utf-8");
            // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
            String fileName = URLEncoder
                    .encode(excelName + "-" + DateUtil.format(DateUtil.date(), DatePattern.PURE_DATE_PATTERN), "UTF-8")
                    .replaceAll("\\+", "%20");
            response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");

            Map<String, Object> templateParamMap = new HashMap<>();
            LpsRemarkDicItem dicItem = new LpsRemarkDicItem();
            dicItem.setCode(vo.getStatisticDim());
            List<LpsRemarkDicItem> dicItems = dicItemService.selectListByCode(dicItem);
            StringBuilder builder = new StringBuilder();
            if (dicItems !=null && dicItems.size()>0){
                for (int i = 0; i < dicItems.size(); i++) {
                    builder.append(i+1).append(". ").append(dicItems.get(i).getDetail()).append("\r\n");
                }
            }

            ExcelFillCellMergePrevColUtils cellMergePrevColUtils = new ExcelFillCellMergePrevColUtils();
            // 合并总计行
            cellMergePrevColUtils.add(voList.size()+2 ,0,num);
            // 创建ExcelWriterBuilder
            ExcelWriterBuilder excelWriterBuilder = EasyExcel.write(response.getOutputStream())
                    .withTemplate(classPathResource.getInputStream());
            ExcelWriter excelWriter = excelWriterBuilder.autoCloseStream(Boolean.FALSE)
                    // 列合并
                    .registerWriteHandler(cellMergePrevColUtils).build();

            WriteSheet writeSheet1 = EasyExcel.writerSheet().build();
            /**
             * 模板注意 用{} 来表示你要用的变量 如果本来就有"{","}" 特殊字符 用"\{","\}"代替
             * {} 代表普通变量 {.} 代表是list的变量
             * WriteSheet writeSheet1 = EasyExcel.writerSheet(sheetName).build();容易报空指针异常
             * 获取不到数据,可以选择不写或者升级版本3.0.1以上
             */

            // 填写配置,forceNewRow true表示自动创建一行,后面的数据后移
            FillConfig fillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();

            excelWriter.fill(voList,fillConfig,writeSheet1);

            templateParamMap.put("title","QIP视频验收推进进展("+excelName+")");
            templateParamMap.put("remark",builder.toString());

            //填写数据
            excelWriter.fill(templateParamMap,writeSheet1);

            // 关闭填写
            excelWriter.finish();
            }catch (Exception e){}
```
![建设单位汇总](https://img-blog.csdnimg.cn/direct/ff5482c4ecf742dcac689038de47054d.png)
![在这里插入图片描述](https://img-blog.csdnimg.cn/direct/4c921172600846c5a30a4421b06e3233.png)

![**最终效果**](https://img-blog.csdnimg.cn/direct/bb1481dfb745411696e31701a0d1dcf4.png)

## 3.2 不同数据导入到不同sheet中
这里也是采用模版导入,这里也犯了很多错误,下面会统一总结

```java
InputStream templateStream = classPathResource.getInputStream();

           // 1 设置响应格式
            response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");
            response.setHeader("content-Type", "application/vnd.ms-excel");
            response.setCharacterEncoding("utf-8");
            // 这里URLEncoder.encode可以防止中文乱码 当然和easyexcel没有关系
            String fileName = URLEncoder
                    .encode("视频验收汇总清单" + "-" + DateUtil.format(DateUtil.date(), DatePattern.PURE_DATE_PATTERN), "UTF-8")
                    .replaceAll("\\+", "%20");
            response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + fileName + ".xlsx");

            
            // 2 创建一个XSSFWorkbook对象
            XSSFWorkbook workbook = new XSSFWorkbook(templateStream);
            //写到流里
            ByteArrayOutputStream bos1 = new ByteArrayOutputStream();

            workbook.write(bos1);
            byte[] bArray1 = bos1.toByteArray();
            InputStream is1 = new ByteArrayInputStream(bArray1);
            ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream())
                    .withTemplate(is1).build();
            FillConfig fillConfig = FillConfig.builder().forceNewRow(Boolean.TRUE).build();

            // 循环处理每个sheet页
            for (int i = 0; i < workbook.getNumberOfSheets()-2; i++) {
                XSSFSheet sheet = workbook.getSheetAt(i);
                String sheetName = sheet.getSheetName();
                String byExcelName = DimensionEnum.getNameByStatus(sheetName);
               vo.setStatisticDim(byExcelName);
                // 查询数据
                // 处理数据填充等操作
                List<VideoStatisticVO> voList1 = this.getVideoStatisticsByDim(vo, new ArrayList<>());
                List<VideoStatisticVO> voList = this.getVideoStatisticCount(voList1);
                Map<String, Object> templateParamMap = new HashMap<>();
                LpsRemarkDicItem dicItem = new LpsRemarkDicItem();
                dicItem.setCode(vo.getStatisticDim());
                List<LpsRemarkDicItem> dicItems = dicItemService.selectListByCode(dicItem);
                StringBuilder builder = new StringBuilder();
                if (dicItems !=null && dicItems.size()>0){
                    for (int k = 0; k < dicItems.size(); k++) {
                        builder.append(k+1).append(". ").append(dicItems.get(k).getDetail()).append("\r\n");
                    }
                }
                ExcelFillCellMergePrevColUtils cellMergePrevColUtils = new ExcelFillCellMergePrevColUtils();
                // 合并总计行
                int num =1;
                if (byExcelName.equals(DimensionEnum.UNITPROMANAGERDIM.name()) || byExcelName.equals(DimensionEnum.UNITCONSTRUCTDIM.name()) ){
                    num = 2 ;
                }else if(byExcelName.equals(DimensionEnum.UNITCITYCONSTRUCTDIM.name()) || byExcelName.equals(DimensionEnum.UNITPROCONSTRUCTDIM.name())) {
                    num = 3 ;
                }
                cellMergePrevColUtils.add(voList.size()+2 ,0,num);
                // 创建基于模板的WriteSheet对象
                WriteSheet writeSheet = EasyExcel.writerSheet(i).registerWriteHandler(cellMergePrevColUtils).build();

                // 填充数据到指定sheet页

                templateParamMap.put("title","QIP视频验收推进进展("+sheetName+")");
                templateParamMap.put("remark",builder.toString());
                //填写数据
                excelWriter.fill(voList, fillConfig, writeSheet);
                excelWriter.fill(templateParamMap,writeSheet);

            }
            // 处理第8 ,9sheet页数据
            WriteSheet writeSheet8= EasyExcel.writerSheet(workbook.getSheetName(7)).build();
            WriteSheet writeSheet9= EasyExcel.writerSheet(workbook.getSheetName(8)).build();
            List<VideoStatisticDTO> sheet8List = this.selectData(vo);
            excelWriter.fill(sheet8List,fillConfig,writeSheet8);
            excelWriter.fill(sheet8List,fillConfig,writeSheet9);


            //关闭流
            excelWriter.finish();
            bos1.close();
            is1.close();

```
然后是列合并的工具类
```java

//列合并工具类
public class ExcelFillCellMergePrevColUtils implements CellWriteHandler {
    private static final String KEY ="%s-%s";
    //所有的合并信息都存在了这个map里面
    Map<String, Integer> mergeInfo = new HashMap<>();

    public ExcelFillCellMergePrevColUtils() {
    }

    @Override
    public void beforeCellCreate(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder, Row row, Head head, Integer integer, Integer integer1, Boolean aBoolean) {

    }

    @Override
    public void afterCellCreate(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder, Cell cell, Head head, Integer integer, Boolean aBoolean) {

    }

    @Override
    public void afterCellDataConverted(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder, CellData cellData, Cell cell, Head head, Integer integer, Boolean aBoolean) {

    }

    @Override
    public void afterCellDispose(WriteSheetHolder writeSheetHolder, WriteTableHolder writeTableHolder, List<CellData> list, Cell cell, Head head, Integer integer, Boolean aBoolean) {
        //当前行
        int curRowIndex = cell.getRowIndex();
        //当前列
        int curColIndex = cell.getColumnIndex();

        Integer num = mergeInfo.get(String.format(KEY, curRowIndex, curColIndex));
        if(null != num){
            // 合并最后一行 ,列
            mergeWithPrevCol(writeSheetHolder, cell, curRowIndex, curColIndex,num);
        }
    }
    public void mergeWithPrevCol(WriteSheetHolder writeSheetHolder, Cell cell, int curRowIndex, int curColIndex, int num) {
        Sheet sheet = writeSheetHolder.getSheet();
        CellRangeAddress cellRangeAddress = new CellRangeAddress(curRowIndex, curRowIndex, curColIndex, curColIndex + num);
        sheet.addMergedRegion(cellRangeAddress);
    }
    //num从第几列开始增加多少列,(6,2,7)代表的意思就是第6行的第2列至第2+7也就是9列开始合并
    public void add (int curRowIndex,  int curColIndex , int num){
        mergeInfo.put(String.format(KEY, curRowIndex, curColIndex),num);
    }

}
```
# 四 总结错误
这里遇到了几个问题,总结一下
1 以流的形式输出文件,controller层返回格式为void
2   WriteSheet writeSheet1 = EasyExcel.writerSheet(sheetName).build();以这样方式写时报错,报dofill方法哪里空指针异常  没找到问题,可能是当时idea缓存,也有可能是版本低于3.0.0
3 分多个sheet页导出时忘记绑定模版报fill方法无法绑定模版

```java

 ExcelWriter excelWriter = EasyExcel.write(response.getOutputStream())
                    .withTemplate(is1).build();
                    .withTemplate(is1)忘记写了
```
4 多个sheet页数据无法一次性导出,这里是先转成流最后一起输出
# 五 反思
在模版填充这里其实还可以动态表头模版导出数据的,这样就不用创建那么多模版了,后续需要优化,然后代码写法问题 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/777654.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

C#WPF控件TextBlock详解

本文讲解WPF控件TextBlock。 目录 定义 常用属性 实例 如何实现自动换行? 如何强制回车换行?

如何系统的学习 C#

第一阶段&#xff1a;环境搭建与基础知识 1.1 安装开发环境 下载并安装Visual Studio或Visual Studio Code。若选用Visual Studio Code&#xff0c;记得安装C#扩展插件。 1.2 C#语言概述 了解C#的发展历程、特点以及应用场景。学习C#的基本语法规范&#xff0c;例如语句结尾…

实时数据库测试-汇编小程序

实时数据库测试-汇编小程序。 hd.asm .686 .model flat,stdcall option casemap:none include \masm32\include\windows.inc include \masm32\include\kernel32.inc include \masm32\include\user32.inc include \masm32\include\gdi32.inc …

C# 反射的使用及场景

1&#xff0c;使用反映将一个对象的同名属性赋值给另一个对象 2, DataTable 转换成一个实体 3&#xff0c;使用反射动态执行方法 4,根据属性信息来执行对应的方法 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using…

项目启动时自动订阅配置中指定的MQ主题,并将接收到的消息存储在Redis中,提供了一个HTTP接口来查询存储的消息

涵盖从application.yml配置&#xff0c;通过MQ订阅消息&#xff0c;将消息存放到Redis&#xff0c;最后通过HTTP接口提供消息查询的整个流程&#xff0c;我们将分步进行。 Step 1: application.yml配置 spring:profiles:active: devredis:host: localhostport: 6379database:…

Spring用到了哪些设计模式?

目录 Spring 框架中⽤到了哪些设计模式&#xff1f;工厂模式单例模式1.饿汉式&#xff0c;线程安全2.懒汉式&#xff0c;线程不安全3.懒汉式&#xff0c;线程安全4.双重检查锁&#xff08;DCL&#xff0c; 即 double-checked locking&#xff09;5.静态内部类6.枚举单例 代理模…

【论文阅读】UniLog: Automatic Logging via LLM and In-Context Learning

注 由于其公司的保密政策&#xff0c;本文没有公开源代码&#xff0c;数据是公开的。 文章目录 摘要一、介绍二、背景和动机2.1、日志语句生成2.2、大语言模型2.3、上下文学习&#xff08;In-Context Learning&#xff0c;ICL) 三、UNILOG3.1、模型骨干3.2、提示策略3.2.1、提…

3d金属模型灯怎么安装---模大狮模型网

在3D场景中&#xff0c;添加灯光是非常重要的步骤&#xff0c;可以提升场景的氛围和逼真度。特别是对于金属材质的模型&#xff0c;合适的灯光设置能够突出其质感和反射效果。下面将介绍如何在3D软件中安装金属模型灯&#xff0c;并分为以下四个分类进行详细说明。 一、选择合适…

简述机器视觉技术在自动化行业中的典型应用

如今&#xff0c;自动化技术在我国发展迅猛&#xff0c;人们对于机器视觉的认识更加深刻&#xff0c;对于它的看法也发生了很大的转变。机器视觉系统提高了生产的自动化程度&#xff0c;让不适合人工作业的危险工作环境变成了可能&#xff0c;让大批量、持续生产变成了现实&…

竞赛 python+opencv+深度学习实现二维码识别

0 前言 &#x1f525; 优质竞赛项目系列&#xff0c;今天要分享的是 &#x1f6a9; pythonopencv深度学习实现二维码识别 &#x1f947;学长这里给一个题目综合评分(每项满分5分) 难度系数&#xff1a;3分工作量&#xff1a;3分创新点&#xff1a;3分 该项目较为新颖&…

【InternLM 实战营第二期笔记】书生·浦语大模型全链路开源体系及InternLM2技术报告笔记

大模型 大模型成为发展通用人工智能的重要途径 专用模型&#xff1a;针对特定任务&#xff0c;一个模型解决一个问题 通用大模型&#xff1a;一个模型应对多种任务、多种模态 书生浦语大模型开源历程 2023.6.7&#xff1a;InternLM千亿参数语言大模型发布 2023.7.6&#…

视觉信息处理与FPGA实现第八次作业——verilog实现对比度调节

一、查看灰度图的数据格式 2.1 安装HxD HxD下载链接&#xff1a;https://download.csdn.net/download/weixin_44357071/89045331 解压直接打开exe就能使用。 将需要查看二进制数据的图片拖到软件框里就能读取 2.2 找到bmp图像的图片点阵数据起始地址&#xff0c;原理和例子…

R语言批量计算t检验,输出pvalue和均值

1.输入数据如下&#xff1a; 2.代码如下 setwd("E:/R/Rscripts/rG4相关绘图") # 读取CSV文件 data <- read.csv("box-cds-ABD-不同类型rg4-2.csv", stringsAsFactors FALSE)# 筛选出Type2列为指定五种类型的数据 filtered_data <- subset(data, …

git常用操作指令

以下是Git的常用指令: 1. git init 说明&#xff1a;初始化一个新的Git仓库。 例子&#xff1a; $ mkdir my_project $ cd my_project $ git init Initialized empty Git repository in /path/to/my_project/.git/备注&#xff1a;在my_project目录下创建了一个新的Git仓库…

【AIGC调研系列】通义千问、文心一言、抖音云雀、智谱清言、讯飞星火的特点分析

通义千问、文心一言、抖音云雀、智谱清言、讯飞星火这五款AI大模型各有特色&#xff0c;它们在市场上的定位和竞争策略也有所不同。 通义千问&#xff1a;由阿里巴巴推出&#xff0c;被认为是最接近ChatGPT水平的国产AI模型[7]。它不仅提供了长文档处理功能&#xff0c;还能够…

使用Kaggle API快速下载Kaggle数据集

前言 在使用Kaggle网站下载数据集时&#xff0c;直接在网页上点击下载可能会很慢&#xff0c;甚至会出现下载失败的情况。本文将介绍如何使用Kaggle API快速下载数据集。 具体步骤 安装Kaggle API包 在终端中输入以下命令来安装Kaggle API相关的包&#xff1a; pip install…

flutter 打包成web应用后怎么通过url跳转页面

在 Flutter 中&#xff0c;如果你想要在打包成 Web 应用后通过 URL 跳转页面&#xff0c;你可以利用 Flutter 提供的路由导航系统和 URL 策略。以下是具体步骤&#xff1a; 1. 配置路由 在 Flutter 应用中定义路由&#xff0c;一种简单的方式是使用 MaterialApp 构造器的 rou…

elementplus-vue-审核按钮-对话框(Dialog )

效果图&#xff1a; 代码&#xff1a; <template> <el-button type"success" click"dialogVisible true" :icon"Edit">审核</el-button> <el-dialog v-model"dialogVisible" title"是否通过" width&q…

公链角逐中突围,Solana 何以成为 Web3 世界的流量焦点?

在众多区块链公链中&#xff0c;Solana 凭借其创纪录的处理速度和极低的交易费用&#xff0c;成为了众多开发者和投资者的宠儿。就像网络上流行的那句话所说&#xff1a;“Why slow, when you can Solana?”&#xff0c;Solana 正以它的速度和强大的生态系统&#xff0c;重新定…

uniApp使用XR-Frame创建3D场景(5)材质贴图的运用

上一篇讲解了如何在uniApp中创建xr-frame子组件并创建简单的3D场景。 这篇我们讲解在xr-frame中如何给几何体赋予贴图材质。 先看源码 <xr-scene render-system"alpha:true" bind:ready"handleReady"><xr-node><xr-assets><xr-asse…