单选多选提交问卷,代码示例

element中

需要对接口返回的数据进行分析。多选问题使用checkbox,单选题使用radio。

多选时可以绑定min/max来控制选择的个数

        <div class="" v-if="item2.allowMultipleVote == 1"><div class="title_radio">多选 [最少选择<span>{{ item2.leastSelectNumber }}</span>项,最多选择<span>{{ item2.maxSelectNumber }}</span>项]</div><div class="choose_card"><el-checkbox-groupv-model="selectedCheckboxItems":min="Number(item2.leastSelectNumber)":max="Number(item2.maxSelectNumber)"><label v-for="(item3, index3) in item2.options" :key="index3"><el-checkbox:label="item3.id":value="item3.id"@change="handleCheckboxChange(item2.itemId)">{{ item3.dataOption }}</el-checkbox></label></el-checkbox-group></div></div><div class="" v-else><div class="title_radio">单选</div><div class="choose_card"><el-radio-group v-model="selectedRadioItems"><label v-for="(item3, index3) in item2.options" :key="index3"><el-radio:label="item3.id":value="item3.id"@change="handleRadioChange(item2.itemId)">{{ item3.dataOption }}</el-radio></label></el-radio-group></div></div>

怎么收集选中的数据集合

因为是设计多选、单选、多个问题。所以要使用多维数组传给后端。

分别给多选和单选绑定方法,收集选中的值。

item是选中题目的id,itemOptionIds是题目的选项id,多选时itemOptionIds要穿数组。所以多选题v-model绑定的值是数组。

    // 单选按钮的操作handleRadioChange(value) {let newObj = {itemId: value,itemOptionIds: this.selectedRadioItems,};// 判断是否已经选择过当前选项let index = this.sumitInfoid.findIndex((item) => item.itemId === newObj.itemId);if (index !== -1) {this.sumitInfoid[index] = newObj;} else {this.sumitInfoid.push(newObj);}// console.log('单选按钮', this.sumitInfoid);},// 多选按钮的操作handleCheckboxChange(value) {console.log(value, this.selectedCheckboxItems, 'this.selectedCheckboxItems');let newObj = {itemId: value,itemOptionIds: this.selectedCheckboxItems,};let index = this.sumitInfoid.findIndex((item) => item.itemId === newObj.itemId);if (index !== -1) {this.sumitInfoid[index] = newObj;} else {this.sumitInfoid.push(newObj);}console.log('多选按钮', this.sumitInfoid);},

data定义的值

      sumitInfoid: [], // 最终要提交的选项数据selectedRadioItems: '', // 单选的选项数据selectedCheckboxItems: [], // 多选的选项数据

 uni中

uni中好像监听不到多选的最大值最小值,需要自己判断。其他地方同element

				<view class="" v-if="item2.allowMultipleVote == 1"><view class="title_radio">多选 [最少选择<text>{{item2.leastSelectNumber}}</text>项,最多选择<text>{{item2.maxSelectNumber}}</text>项]</view><view class="choose_card"><checkbox-group @change="checkboxChange"><label v-for="(item3,index3) in item2.options" :key="index3"><checkbox :value="item2.itemId+'+'+item3.id" :checked="item3.isChecked != 0"style="transform:scale(0.8)" color="#00B893;" /><text>{{item3.dataOption}}</text></label></checkbox-group></view></view><view class="" v-else><view class="title_radio">单选</view><view class="choose_card"><radio-group @change="radioChange"><label v-for="(item3,index3) in item2.options" :key="index3"><!-- 单选按钮 --><radio class="radio_true" :value="item2.itemId+'+'+item3.id" :name="item3.dataOption":checked="index3 === current" color="#00B893" style="transform: scale(0.8);" /><text>{{item3.dataOption}}</text></label></radio-group></view></view>
			// 投票选项更改radioChange: function(evt) {console.log(evt.detail.value);let value = evt.detail.value.split('+');let newObj = {itemId: value[0],itemOptionIds: [value[1]] // 注意这里将itemOptionIds包装在数组中};// 判断是否已经选择过当前选项let index = this.sumitInfoid.findIndex(item => item.itemId === newObj.itemId);console.log('index !== -1', index !== -1); // 输出结果if (index !== -1) {this.sumitInfoid[index] = newObj;} else {this.sumitInfoid.push(newObj);}// console.log('输出结果单选sumitInfoid', this.sumitInfoid); // 输出结果},// 投票选项更改checkboxChange: function(e) {let newObj = {itemId: '',itemOptionIds: [] // 注意这里将itemOptionIds包装在数组中};if (e.detail.value.length > 0) {let firstValue = e.detail.value[0];let parts = firstValue.split('+');newObj.itemId = parts[0]; // 获取id部分    // 遍历所有值并提取value部分  e.detail.value.forEach(value => {let parts = value.split('+');if (parts.length > 1) { // 确保有id和value两部分// 判断是否多选了let foundItem = this.voteItemList.find(item => item.itemId === newObj.itemId)let maxSelectNumber = foundItem.maxSelectNumber;if (newObj.itemOptionIds.length >= maxSelectNumber) {uni.showToast({title: '最多只能选择' + maxSelectNumber + '项',icon: 'none'})for (var i = 0, lenI = foundItem.options.length; i < lenI; ++i) {const item = foundItem.options[i];if (item.id == parts[1]) {this.$set(item, 'isChecked', 1)setTimeout(() => {this.$set(item, 'isChecked', 0)}, 500)}}} else {newObj.itemOptionIds.push(parts[1]); // 将value部分添加到values数组中  }}});}// 判断是否已经选择过当前选项let index = this.sumitInfoid.findIndex(item => item.itemId === newObj.itemId);if (index !== -1) {this.sumitInfoid[index] = newObj;} else {this.sumitInfoid.push(newObj);}// }// }// console.log('输出结果多选sumitInfoid', this.sumitInfoid); // 输出结果},

 页面展示

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

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

相关文章

CS61B Data Structure-Jonathan Lecture2 using objects - OBJECTS METHODS

Recall String s1; // Step 1: declare a String variable s1 new String(); // Step 2: assign it a value, a new empty string objectString s2 new String(); // 1&2 combined今日知识点 situation: pointing to the same object s1 "Yow!";s2 s1; //…

onclick和@click有什么区别,究竟哪个更好使?

哈喽小伙伴们大家好,我是爱学英语的程序员,今天来给大家分享一些关于vue中事件绑定相关的内容,希望对大家有所帮助. 场景是这样的:我要实现一个切换栏,默认激活的是第一个标签,当鼠标移动到第二个标签是,对应的内容让激活.起初,我第一时间想到的是用element plus的组件来实现这…

[leetcode hot 150]第一百一十七题,填充每个节点的下一个右侧节点

题目&#xff1a; 给定一个二叉树&#xff1a; struct Node {int val;Node *left;Node *right;Node *next; } 填充它的每个 next 指针&#xff0c;让这个指针指向其下一个右侧节点。如果找不到下一个右侧节点&#xff0c;则将 next 指针设置为 NULL 。 初始状态下&#x…

SpringSecurity6.x使用教程

SpringSecurity6.x使用 SpringSecurity版本 SpringSecurity目前支持的版本如下图所示&#xff0c;可以看到5.x的版本过几年就不会再维护了&#xff0c;6.x将成为主流。 入门 引入依赖 <dependency><groupId>org.springframework.boot</groupId><arti…

CMS Made Simple v2.2.15 远程命令执行漏洞(CVE-2022-23906)

前言 CVE-2022-23906 是一个远程命令执行&#xff08;RCE&#xff09;漏洞&#xff0c;存在于 CMS Made Simple v2.2.15 中。该漏洞通过上传头像功能进行利用&#xff0c;攻击者可以上传一个经过特殊构造的图片文件来触发漏洞。 漏洞详情 CMS Made Simple v2.2.15 中的头像上…

【C++/STL】优先级队列的介绍与模拟实现仿函数

✨ 万物与我皆是自由诗 &#x1f30f; &#x1f4c3;个人主页&#xff1a;island1314 &#x1f525;个人专栏&#xff1a;C学习 &#x1f680; 欢迎关注&#xff1a;&#x1f44d;点赞 &#x1f442;&#x1…

关于string的‘\0‘与string,vector构造特点加部分特别知识点的讨论

目录 前言&#xff1a; 问题一&#xff1a;关于string的\0问题讨论 问题二&#xff1a;C标准库中的string内存是分配在堆上面吗&#xff1f; 问题三&#xff1a;string与vector的capacity大小设计的特点 问题四&#xff1a;string的流提取问题 问题五&#xff1a;迭代器失…

04.ffmpeg打印音视频媒体信息

目录 1、相关头文件 2、相关结构体 3、相关函数 4、函数详解 5、源码附上 1、相关头文件 #include <libavformat/avformat.h> 包含格式相关的函数和数据结构 #include <libavutil/avutil.h> 包含一些通用实用函数 2、相关结构体 AV…

【PWN · ret2syscall | GoPwn】[2024CISCN · 华中赛区]go_note

一道GoPwn&#xff0c;此外便是ret2syscall的利用。然而过程有不小的曲折&#xff0c;参考 返璞归真 师傅的wp&#xff0c;堪堪完成了复现。复现过程中&#xff0c;师傅也灰常热情回答我菜菜的疑问&#xff0c;感谢&#xff01;2024全国大学生信息安全竞赛&#xff08;ciscn&am…

RabbitMQ快速入门 - 图像化界面的简单操作

目录 1、RabbitMQ的安装 2、RabbitMQ基本介绍 3、简单案例 4、数据隔离 1、RabbitMQ的安装 官网链接&#xff1a;rabbitmq官网 &#xff08;官网很详细&#xff0c;也可以在官网学习啦~&#xff09; 基础入门&#xff1a;自主学习&#xff1a;最新版本&#xff1a;安装我…

缓存-缓存的使用与基本详解

1.缓存使用 为了系统性能的提升&#xff0c;我们一般都会将部分数据放入缓存中&#xff0c;加速访问。而db承担数据落盘工作。 哪些数据适合放入缓存&#xff1f; 即时性、数据一致性要求不高的访问量大且更新频率不高的数据&#xff08;读多&#xff0c;写少&#xff09; …

如何配置 PostgreSQL 以实现高可用性和故障转移?

文章目录 一、高可用性和故障转移的概念&#xff08;一&#xff09;数据复制&#xff08;二&#xff09;监控和检测&#xff08;三&#xff09;快速切换 二、实现高可用性和故障转移的技术方案&#xff08;一&#xff09;流复制&#xff08;Streaming Replication&#xff09;&…

轻松创建对象——简单工厂模式(Java实现)

1. 引言 大家好&#xff0c;又见面了&#xff01;在上一篇文章中&#xff0c;我们通过Python示例介绍了简单工厂模式&#xff0c;今天&#xff0c;我们继续深入这个话题&#xff0c;用Java来实现简单工厂模式。 2. 什么是简单工厂模式 简单工厂模式&#xff08;Simple Facto…

idea部署war包成功,但是接口404

场景 项目结构 xxx-xxx-app xxx-xxx-service xxx-xxx-webappapp/webapp依赖service&#xff0c;service中写了各种api&#xff0c;先别管它合不合理&#xff0c;正式环境用webapp发布。 本地配置tomcat启动&#xff0c;但是发现每次部署成功&#xff0c;但是service中的接口…

【TB作品】脉搏测量,ATMEGA8单片机,Proteus仿真,ATmega8控制脉搏测量与显示系统

硬件组成&#xff1a; LCD1602脉搏测量电路&#xff08;带灯&#xff09;蜂鸣器报警按键设置AT24C02 功能&#xff1a; &#xff08;1&#xff09;LCD1602主页显示脉搏、报警上限、报警下限&#xff1b; &#xff08;2&#xff09;五个按键&#xff1a;按键1&#xff1a;切换设…

baomidou多数据源切换注解@DS没有效果

baomidou多数据源切换注解DS没有效果 <dependency><groupId>com.baomidou</groupId><artifactId>dynamic-datasource-spring-boot-starter</artifactId><version>3.1.1</version> </dependency> ##原因 方法上有Transaction…

Docker学习笔记(二)镜像、容器、仓库相关命令操作

一、docker镜像操作 列出镜像列表 我们可以使用 docker images 来列出本地主机上的镜像。 各个选项说明: REPOSITORY&#xff1a;表示镜像的仓库源 TAG&#xff1a;镜像的标签 IMAGE ID&#xff1a;镜像ID CREATED&#xff1a;镜像创建时间 SIZE&#xff1a;镜像大小 查…

昇思25天学习打卡营第9天|静态图模式的深度剖析与应用指南

目录 背景介绍 动态图模式 静态图模式 静态图模式的使用场景 静态图模式开启方式 基于装饰器的开启方式 基于context的开启方式 静态图的语法约束 JitConfig配置选项 静态图高级编程技巧 背景介绍 AI 编译框架主要包含两种运行模式&#xff0c;即动态图模式与静态图模…

19C 单机文件系统安装文档

准备工作 1)查看系统版本、内核参数 more /etc/redhat-release more /etc/redflag-releaseuname -a2)查看当前系统是否配置了HugePages。在下面的查询中&#xff0c;HugePages的几个相关值都为0&#xff0c;表明当前未配值HugePages&#xff0c;其次可以看到该版本的大页大小为…

Java之网络面试经典题(一)

目录 ​编辑 一.Session和cookie Cookie Session 二.HTTP和HTTPS的区别 三.浅谈HTTPS为什么是安全的&#xff1f; 四.TCP和UDP 五.GET和Post的区别 六.forward 和 redirect 的区别&#xff1f; 本专栏全是博主自己收集的面试题&#xff0c;仅可参考&#xff0c;不能相…