uniapp相关记录

一、自定义我的物品组件 my_goods.vue

<template><view class="goods-item"><!-- 左侧 --><view class="goods-item-left"><radio :checked="goods.goods_state" color="#c00000" v-if="showRadio" @click="radioClickhandler"></radio><image :src="goods.goods_small_logo || defaultPic" class="goods-pic"></image></view><!-- 右侧 --><view class="goods-item-right"><!-- 商品名字 --><view class="goods-name">{{goods.goods_name}}</view><view class="goods-info-box"><view class="good-price">{{goods.goods_price}}</view><uni-number-box :min="1" :max="9999" :value="goods.goods_count" v-if="showNum"@change="numChangeHandler"></uni-number-box></view></view></view>
</template><script>export default {props: {// 商品的信息对象goods: {type: Object,defaul: {},},showRadio: {type: Boolean,// 默认不展示 radio 组件default: false},showNum: {type: Boolean,default: false}},data() {return {// 默认的图片defaultPic: 'https://img3.doubanio.com/f/movie/8dd0c794499fe925ae2ae89ee30cd225750457b4/pics/movie/celebrity-default-medium.png',};},methods: {// radio 组件的点击事件处理函数radioClickhandler() {this.$emit('radio-change', {goods_id: this.goods.goods_id,goods_state: !this.goods.goods_state})},// 监听购物车商品数量变化的事件numChangeHandler(val) {this.$emit('num-change', {goods_id: this.goods.goods_id,goods_count: +val})}}}
</script><style lang="scss">.goods-item {display: flex;padding: 10px 5px;border-bottom: 1px solid #dedede;background-color: #fff;.goods-item-left {margin-right: 5px;display: flex;justify-content: center;align-items: center;.goods-pic {width: 100px;height: 100px;display: block;}}.goods-item-right {display: flex;flex: 1;flex-direction: column;justify-content: space-between;.goods-name {font-size: 13px;}.goods-info-box {display: flex;justify-content: space-between;align-items: center;.good-price {color: #c00000;font-size: 16px;}}}}
</style>

二、自定义商品列表组件 good_list.vue

<template><view><view class="goods-list"><view v-for="(goods,i) in goodsList" :key="i" @click="gotoDetail(goods)"><my-goods :goods="goods"></my-goods></view></view></view>
</template><script>import {myGoods} from '@/components/my-goods/my-goods.vue'export default {components: {myGoods},  data() {return {// 请求参数对象queryObj: {query: '',cid: '',pagenum: 1,pagesize: 10},goodsList: [],total: 0,isLoading: false}},onLoad(options) {this.queryObj.query = options.query || ''this.queryObj.cid = options.cid || ''this.getGoodsList()},methods: {// 获取商品列表数据async getGoodsList(cb) {// 打开节流阀this.isLoading = trueconst {data: res} = await uni.$http.get('/api/public/v1/goods/search', this.queryObj)// 关闭节流阀this.isLoading = falsecb && cb()if (res.meta.status !== 200) return uni.$showMsg()this.goodsList = [...this.goodsList, ...res.message.goods]this.total = res.message.total},gotoDetail(goods) {uni.navigateTo({url: '/subpkg/goods_detail/goods_detail?goods_id=' + goods.goods_id})}},onReachBottom() {if (this.queryObj.pagenum * this.queryObj.pagesize >= this.total) return uni.$showMsg('数据加载完毕')if (this.isLoading) return// 让页码值自增+1this.queryObj.pagenum++this.getGoodsList()},onPullDownRefresh() {// 重置关键数据this.queryObj.pagenum = 1this.total = 0this.isLoading = falsethis.goodsList = []// 重新发起数据请求this.getGoodsList(() => {uni.stopPullDownRefresh()})}}</script><style lang="scss"></style>

三、自定义商品详情组件 good_detail.vue

<template><view v-if="goods_info.goods_name" class="goods-detail-container"><!-- 轮播图区域 --><swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true"><swiper-item v-for="(item,i) in goods_info.pics" :key="i"><image :src="item.pics_big" @click="preview(i)"></image></swiper-item></swiper><!-- 商品信息区域 --><view class="goods-info-box"><!-- 商品价格 --><view class="price">{{goods_info.goods_price}}</view><!-- 商品信息主体区域 --><view class="goods-info-body"><!-- 商品名字 --><view class="goods-name">{{goods_info.goods_name}}</view><!-- 收藏 --><view class="favi"><uni-icons type="star" size="18" color="gray"></uni-icons><text>收藏</text></view></view><!-- 运费 --><view class="yf">快递:免运费</view></view><rich-text :nodes="goods_info.goods_introduce"></rich-text><!-- 商品导航组件区域 --><view class="goods_nav"><uni-goods-nav :fill="true" :options="options" :buttonGroup="buttonGroup" @click="onClick"@buttonClick="buttonClick" /></view></view>
</template><script>export default {watch: {total: {handler(newVal) {const findResult = this.options.find(x => x.text === '购物车')if (findResult) {findResult.info = newVal}},immediate: true}},data() {return {goods_info: {},options: [{icon: 'shop',text: '店铺',infoBackgroundColor: '#007aff',infoColor: "red"}, {icon: 'cart',text: '购物车',info: 0}],buttonGroup: [{text: '加入购物车',backgroundColor: '#ff0000',color: '#fff'},{text: '立即购买',backgroundColor: '#ffa200',color: '#fff'}],}},onLoad(options) {const goods_id = options.goods_idthis.getGoodsDetail(goods_id)},methods: {async getGoodsDetail(goods_id) {const {data: res} = await uni.$http.get('/api/public/v1/goods/detail', {goods_id})if (res.meta.status !== 200) return uni.$showMsg()res.message.goods_introduce = res.message.goods_introduce.replace(/<img /g,'<img style="display:block;" ').replace(/webp/g, 'jpg')this.goods_info = res.message},preview(i) {uni.previewImage({current: i,urls: this.goods_info.pics.map(x => x.pics_big)})},onClick(e) {if (e.content.text === '购物车') {uni.switchTab({url: '/pages/cart/cart'})}},buttonClick(e) {if (e.content.text === '加入购物车') {// 组织商品的信息对象// 每个商品的信息对象,都包含如下 6 个属性:// { goods_id, goods_name, goods_price, goods_count, goods_small_logo, goods_state }const goods = {goods_id: this.goods_info.goods_id,goods_name: this.goods_info.goods_name,goods_price: this.goods_info.goods_price,goods_count: 1,goods_small_logo: this.goods_info.goods_small_logo,goods_state: true}// 调用 addToCart 方法// this.addToCart(goods)}}}}
</script><style lang="scss">swiper {height: 750rpx;image {width: 100%;height: 100%;}}.goods-info-box {padding: 10px;padding-right: 0;.price {color: #c00000;font-size: 18px;margin: 10px 0;}.goods-info-body {display: flex;justify-content: space-between;.goods-name {font-size: 13px;margin-right: 10px;}.favi {width: 120px;font-size: 12px;display: flex;flex-direction: column;align-items: center;justify-content: center;border-left: 1px solid #eaeaea;color: gray;}}.yf {font-size: 12px;color: gray;margin: 10px 0;}}.goods_nav {position: fixed;bottom: 0;left: 0;width: 100%;}.goods-detail-container {padding-bottom: 50px;}
</style>

四、自定义搜索组件 my_search.vue

<template><view class="my-search-container" :style="{'background-color': bgcolor}" @click="searchBoxHandler"><view class="my-search-box" :style="{'border-radius': radius + 'px'}"><uni-icons type="search" size="17"></uni-icons><text class="placeholder">搜索</text></view></view>
</template><script>export default {name: "my-search",props: {// 背景颜色bgcolor: {type: String,default: '#c00000'},// 圆角尺寸radius: {type: Number,default: 18 //px}},data() {return {};},methods: {searchBoxHandler() {this.$emit('click')}}}
</script><style lang="scss">.my-search-container {height: 50px;// background-color: #c00000;display: flex;align-items: center;padding: 0 10px;.my-search-box {width: 100%;height: 36px;background-color: #fff;// border-radius: 18px;display: flex;justify-content: center;align-items: center;.placeholder {font-size: 15px;margin-left: 5px;}}}
</style>

五、小程序首页 index.vue

<template><view><!-- 搜索组件 --><view class="search-box"><my-search @click="gotoSearch"></my-search><!-- 动态给子组件传颜色和圆角像素值 --><!-- <my-search @click="gotoSearch" :bgcolor="'black'" :radius="18"></my-search> --></view><!-- 轮播图区域 --><swiper :indicator-dots="true" :autoplay="true" :interval="3000" :duration="1000" :circular="true"><swiper-item v-for="(item,i) in swiperList" :key="i"><navigator class="swiper-item" :url="'/subpkg/goods_detail/goods_detail?goods_id=' + item.good_id"><image :src="item.image_src"></image></navigator></swiper-item></swiper><!-- 分类导航区域 --><view class="nav-list"><view class="nav-item" v-for="(item,i) in navList" :key="i" @click="navClickHandler(item)"><image :src="item.image_src" class="nav-img"></image></view></view><!-- 楼层区域 --><view class="floor-list"><!-- 每个楼层的 item 项 --><view class="floor-item" v-for="(item,i) in floorList" :key="i"><!-- 楼层的标题 --><image :src="item.floor_title.image_src" class="floor-title"></image><!-- 楼层的图片区域 --><view class="floor-img-box"><!-- 左侧图片 --><navigator class="left-img-box" :url="item.product_list[0].url"><image :src="item.product_list[0].image_src" :style="{width: item.product_list[0].image_width + 'rpx'}"mode="widthFix"></image></navigator><!-- 右侧图片 --><view class="right-img-box"><navigator class="right-img-item" v-for="(item2,i2) in item.product_list" :key="i2" v-if="i2 !== 0":url="item2.url"><image :src="item2.image_src" :style="{width: item2.image_width + 'rpx'}" mode="widthFix"></image></navigator></view></view></view></view></view>
</template><script>import {mySearch} from '@/components/my-search/my-search.vue'export default {components:{mySearch},data() {return {title: 'Hello',// 轮播图数据列表swiperList: [],// 分类导航的数据列表navList: [],// 楼层的数据floorList: []}},onLoad() {this.getSwiperList()this.getNavList()this.getFloorList()},methods: {gotoSearch() {uni.navigateTo({url: '/subpkg/search/search'})},async getSwiperList() {const {data: res} = await uni.$http.get('/api/public/v1/home/swiperdata')// 请求失败if (res.meta.status !== 200) return uni.$showMsg()// 请求成功this.swiperList = res.message},async getNavList() {const {data: res} = await uni.$http.get('/api/public/v1/home/catitems')// 请求失败if (res.meta.status !== 200) return uni.$showMsg()// 请求成功this.navList = res.message},navClickHandler(item) {if (item.name === '分类') {uni.switchTab({url: '/pages/category/category'})}},async getFloorList() {const {data: res} = await uni.$http.get('/api/public/v1/home/floordata')// 请求失败if (res.meta.status !== 200) return uni.$showMsg()// 请求成功// 对每张图片的 navigator_url 数据进行处理res.message.forEach(floor => {floor.product_list.forEach(prod => {prod.url = '/subpkg/goods_list/goods_list?' + prod.navigator_url.split('?')[1]})})this.floorList = res.message},}}
</script><style>swiper {height: 330rpx;},.swiper-item,image {width: 100%;height: 100%;},.nav-list {display: flex;justify-content: space-around;margin: 15px 0;}.nav-img {width: 128rpx;height: 140rpx;}.floor-title {width: 100%;height: 60rpx;}.floor-img-box {display: flex;padding-left: 10rpx;}.right-img-box {display: flex;flex-wrap: wrap;justify-content: space-around;}.search-box {position: sticky;top: 0;z-index: 999;}
</style>

六、状态管理相关 store(以下文件分别为:store.js cart.js user.js)

import Vue from 'vue'
import Vuex from 'vuex'
import moduleCart from '@/store/cart.js'
import moduleUser from '@/store/user.js'Vue.use(Vuex)const store = new Vuex.Store({modules: {'m_cart': moduleCart,'m_user': moduleUser}
})export default store
export default {namespaced: true,state: () => ({// 购物车的数组,用来存储购物车中每个商品的信息对象// 每个商品的信息对象,都包含如下 6 个属性:// { goodsId, goodsName, goodsPrice, goodsCount, goodsSmallLogo, goodsState }cart: JSON.parse(uni.getStorageSync('cart') || '[]')}),mutations: {addToCart(state, goods) {const findResult = state.cart.find(x => x.goodsId === goods.goodsId)if (!findResult) {state.cart.push(goods)} else {findResult.goods_count++}this.commit('m_cart/saveToStorage')},saveToStorage(state) {uni.setStorageSync('cart', JSON.stringify(state.cart))},// 更新购物车商品的勾选状态updateGoodsState(state, goods) {const findResult = state.cart.find(x => x.goodsId === goods.goodsId)if (findResult) {findResult.goodsState = goods.goodsStatethis.commit('m_cart/saveToStorage')}},updateGoodsCount(state, goods) {const findResult = state.cart.find(x => x.goodsId === goods.goodsId)if (findResult) {findResult.goodsCount = goods.goodsCountthis.commit('m_cart/saveToStorage')}},// 根据 id 删除对应的商品removeGoodsById(state, goods_id) {state.cart = state.cart.filter(x => x.goodsId !== goodsId)this.commit('m_cart/saveToStorage')},// 更新购物车中所有的商品勾选状态updateAllGoodsState(state, newState) {state.cart.forEach(x => x.goodsState = newState)this.commit('m_cart/saveToStorage')}},getters: {// 购物车中所有商品的总数量total(state) {// let c = 0// state.cart.forEach(goods => c += goods.goods_count)// return creturn state.cart.reduce((total, item) => total += item.goodsCount, 0)},// 购物车中已勾选的商品的总数量checkedCount(state) {return state.cart.filter(x => x.goodsState).reduce((total, item) => total += item.goodsCount, 0)},// 已勾选的商品的总价格checkedGoodsAmount(state) {return state.cart.filter(x => x.goodsState).reduce((total, item) => total += item.goodsCount * item.goodsPrice,0).toFixed(2)}}
}
export default {// 开启命名空间namespaced: true,// 数据state: () => ({address: JSON.parse(uni.getStorageSync('address') || '{}'),token: uni.getStorageSync('token') || '',// 用户的信息对象userinfo: JSON.parse(uni.getStorageSync('userinfo') || '{}')}),mutations: {// 更新收货地址updateAddress(state, address) {state.address = addressthis.commit('m_user/saveAddressToStorage')},// 持久化存储 addresssaveAddressToStorage(state) {uni.setStorageSync('address', JSON.stringify(state.address))},updateUserInfo(state, userinfo) {state.userinfo = userinfothis.commit('m_user/saveUserInfoToStorage')},saveUserInfoToStorage(state) {uni.setStorageSync('userinfo', JSON.stringify(state.userinfo))},updateToken(state, token) {state.token = tokenthis.commit('m_user/saveTokenToStorage')},saveTokenToStorage(state) {uni.setStorageSync('token', state.token)}},getters: {// 收货地址addstr(state) {if (!state.address.provinceName) return ''return state.address.provinceName + state.address.cityName + state.address.countyName + state.address.detailInfo}}
}

七、main.js

import App from './App'import store from '@/store/store.js'
// 导入网络请求的包
import { $http } from '@/node_modules/@escook/request-miniprogram'
uni.$http = $http// 请求根路径
$http.baseUrl = 'https://api-hmugo-web.itheima.net'
// 请求拦截器
$http.beforeRequest = function(options) {// 显示loading效果uni.showLoading({title: '数据加载中...',})// 判断当前请求的是否为有权限的接口if (options.url.indexOf('/my/') !== -1) {options.header = {Authorization: "Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1aWQiOjIzLCJpYXQiOjE1NjQ3MzAwNzksImV4cCI6MTAwMTU2NDczMDA3OH0.YPt-XeLnjV-_1ITaXGY2FhxmCe4NvXuRnRB8OMCfnPo"}}
}
// 响应拦截器
$http.afterRequest = function() {// 隐藏loading效果uni.hideLoading()
}
// 封装数据请求失败的弹框方法
uni.$showMsg = function(title = '数据请求失败', duration = 1500) {uni.showToast({title,duration,icon: 'none',})
}
Vue.config.productionTip = falseimport uView from '@/uni_modules/uview-ui'
Vue.use(uView)// #ifndef VUE3
import Vue from 'vue'
Vue.config.productionTip = false
App.mpType = 'app'try {function isPromise(obj) {return (!!obj &&(typeof obj === "object" || typeof obj === "function") &&typeof obj.then === "function");}// 统一 vue2 API Promise 化返回格式与 vue3 保持一致uni.addInterceptor({returnValue(res) {if (!isPromise(res)) {return res;}return new Promise((resolve, reject) => {res.then((res) => {if (res[0]) {reject(res[0]);} else {resolve(res[1]);}});});},});
} catch (error) { }const app = new Vue({...App
})
app.$mount()
// #endif// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {const app = createSSRApp(App)return {app}
}
// #endif

八、引入/uview组件(分别该四个文件:app.vue man.js page.json uni.scss)

<style lang="scss">/*每个页面公共css */@import "@/uni_modules/uview-ui/index.scss";
</style>
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
"easycom": {"^u-(.*)": "@/uni_modules/uview-ui/components/u-$1/u-$1.vue"},
@import '@/uni_modules/uview-ui/theme.scss';

九、uniapp小程序分包
①page.json中定义分包文件
②定义分包文件夹并创建分包文件

"subPackages": [{"root": "subpkg","pages": [{"path": "search/search"},{"path" : "goods_list/goods_list"},{"path" : "goods_detail/goods_detail","style" :                                                                                    {"navigationBarTitleText": "","enablePullDownRefresh": false}}]}],

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

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

相关文章

【洛谷 B2003】输出第二个整数 题解(顺序结构+输入输出)

输出第二个整数 题目描述 输入三个整数&#xff0c;整数之间由一个空格分隔。把第二个输入的整数输出。 输入格式 只有一行&#xff0c;共三个整数&#xff0c;整数之间由一个空格分隔。 输出格式 只有一行&#xff0c;一个整数&#xff0c;即输入的第二个整数。 样例 #…

华为云IoT与OpenHarmony深度协同,加速设备上鸿即上云【云驻共创】

本次专题论坛探讨了华为云IoT与Open Harmony的深度协同、边缘屏蔽硬件差异、实现智慧隧道全方位智能化管理&#xff0c;以及华为云与Open Harmony生态的合作。同时也介绍了华为云物联网卡平台、HTTP2协议以及华为物联网在交通领域的应用。 一&#xff0e;华为云IoT与Open Harm…

Vue rules校验规则详解

Vue.js 提供了一套轻量级的、可扩展的模板校验规则。这些规则可以通过在v-model绑定中添加.modifier来使用&#xff0c;例如v-model.trim 下面是一些常见的 Vue.js 校验规则&#xff1a; required: 检查值是否非空email: 检查值是否符合电子邮件格式min: 检查值是否大于等于指…

数学几百年重大错误:将两异函数误为同一函数

黄小宁 因各实数都可是数轴上点的坐标所以数集A可形象化为数轴上的点集A&#xff0c;从而使x∈R变换为实数yxδ的几何意义可是&#xff1a;一维空间“管道”g内R轴上的质点x∈R(x是点的坐标)运动到新的位置yxδ还在管道g内&#xff08;设各点只作位置改变而没别的改变即变位前…

Vue学习

1。 搭框架 依赖等 创建vue项目 vue create 项目名称 vue create [options] <app-name>使用vite npm init vitelatest <app-name>-- --template vue 目录调整1 apiutilsvenderimages、styles 配置文件 jsconfig.json 配置之后路径可以直接使用 / {"comp…

mysql 查询

-- 多表查询select * from tb_dept,tb_emp; 内来链接 -- 内连接 -- A 查询员工的姓名 &#xff0c; 及所属的部门名称 &#xff08;隐式内连接实现&#xff09;select tb_emp.name,tb_dept.name from tb_emp,tb_dept where tb_emp.idtb_emp.id;-- 推荐使用select a.name,b.n…

ElasticSearch之健康状态

参考Cluster health API。 命令样例&#xff0c;如下&#xff1a; curl -X GET "https://localhost:9200/_cluster/health?wait_for_statusyellow&timeout50s&pretty" --cacert $ES_HOME/config/certs/http_ca.crt -u "elastic:ohCxPHQBEs5*lo7F9&qu…

【精选】OpenCV多视角摄像头融合的目标检测系统:全面部署指南&源代码

1.研究背景与意义 随着计算机视觉和图像处理技术的快速发展&#xff0c;人们对于多摄像头拼接行人检测系统的需求日益增加。这种系统可以利用多个摄像头的视角&#xff0c;实时监测和跟踪行人的活动&#xff0c;为公共安全、交通管理、视频监控等领域提供重要的支持和帮助。 …

TS类型全解

使用TypeScript开发的程序更安全&#xff0c;常见的错误都能检查出来。TS能让程序员事半功倍。而原因在于TS的“类型安全”&#xff08;借助类型避免程序做无效的事情&#xff09;。 图 运行程序的过程 但是TS不会直接编译成字节码&#xff0c;而是编译成JavaScript代码。TS编…

【C+进阶之路】第六篇:C++11

文章目录 一、【C】C11&#xff08;1&#xff09;二、【C】C11&#xff08;2&#xff09; 一、【C】C11&#xff08;1&#xff09; 【C】C11&#xff08;1&#xff09; 二、【C】C11&#xff08;2&#xff09; 【C】C11&#xff08;2&#xff09; &#x1f339;&#x1f33…

3.计算机网络

1.重点概念 MSL&#xff08;Maximum segment lifetime&#xff09;&#xff1a;TCP 报⽂最⼤⽣存时间。它是任何 TCP 报⽂在⽹络上存在的 最⻓时间&#xff0c;超过这个时间报⽂将被丢弃。实际应⽤中常⽤的设置是 30 秒&#xff0c;1 分钟和 2 分钟。 TTL&#xff08;Time to …

信息系统项目管理师-进度管理论文提纲

快速导航 1.信息系统项目管理师-项目整合管理 2.信息系统项目管理师-项目范围管理 3.信息系统项目管理师-项目进度管理 4.信息系统项目管理师-项目成本管理 5.信息系统项目管理师-项目质量管理 6.信息系统项目管理师-项目资源管理 7.信息系统项目管理师-项目沟通管理 8.信息系…

【NGINX--3】流量管理

1、A/B 测试 在文件或应用的两个或多个版本之间分割客户端流量&#xff0c;以测试接受度或参与度。 使 用 split_clients 模块将一定比例的客户端流量定向到一个不同的上游&#xff08;upstream&#xff09;池&#xff1a; split_clients "${remote_addr}AAA" $var…

LeetCode算法心得——打家劫舍(记忆化搜索)

大家好&#xff0c;我是晴天学长&#xff0c;准备开始深入动态规划啦&#xff0c;先从记忆化搜索开始&#xff0c;需要的小伙伴可以关注支持一下哦&#xff01;后续会继续更新的。&#x1f4aa;&#x1f4aa;&#x1f4aa; 1) .打家劫舍 你是一个专业的小偷&#xff0c;计划偷窃…

RK3568平台开发系列讲解(Linux系统篇)kernel config 配置解析

🚀返回专栏总目录 文章目录 一、图形化界面的操作二、Kconfig 语法简介三、.config 配置文件介绍四、deconfig 配置文件沉淀、分享、成长,让自己和他人都能有所收获!😄 📢 Linux 内核可以通过输入“make menuconfig”来打开图形化配置界面,menuconfig 是一套图形化的配…

Javaweb之Axios的详细解析

1.3 Axios 上述原生的Ajax请求的代码编写起来还是比较繁琐的&#xff0c;所以接下来我们学习一门更加简单的发送Ajax请求的技术Axios 。Axios是对原生的AJAX进行封装&#xff0c;简化书写。Axios官网是&#xff1a;https://www.axios-http.cn 1.3.1 Axios的基本使用 Axios的…

JC/T 2496-2018 防霉耐水满批粉检测

防霉耐水满批粉是指施涂于建筑物地下室等内墙&#xff0c;以找平和装饰为目的&#xff0c;具有防霉、耐水和无甲醛特性的表面处理材料。 JC/T 2496-2018 防霉耐水满批粉检测 测试项目 产品标准 施工性 JG/T 298 初期干燥抗裂性 GB/T 9779 打磨性 JG/T 298 耐水性 JG/…

map的基础定义及运用

Map 1 使用 1 声明 /*声明map*/map<int, string> myMap {{1, "Apple"}, {2, "Banana"}, {3, "Orange"}};2 插入元素 myMap.insert(make_pair(4, "Graphes"));3 通过访问键查找和访问元素 cout << myMap[2] <<…

[SCTF 2021]rceme

文章目录 前置知识可变参数绕过create_function注入无字母数字RCE动态链接库so绕过disable_functions利用php原生类进行文件读取 解题过程 前置知识 可变参数绕过 PHP 在用户自定义函数中支持可变数量的参数列表。在 PHP 5.6 及以上的版本中&#xff0c;由 … 语法实现&#x…

2023 年爆肝将近 20 万字讲解最新 JavaEE 全栈工程师基础教程(更新中)

1. Java 语言基本概述 Java 是一种广泛使用的编程语言&#xff0c;由 James Gosling 在 Sun Microsystems&#xff08;现在是 Oracle Corporation 的一部分&#xff09;于 1995 年发表。Java 是一种静态类型的、类基础的、并发性的、面向对象的编程语言。Java 广泛应用于企业级…