uniapp 学习笔记

VUE 学习笔记

布局

html 复制代码
横向布局
<style>
H(){
display: flex;//创建 布局管理器
flex-direction: row; //方向 row垂直
flex-wrap: wrap;//显示不下是否换行
}

//居中
.center(){
    display:flex; 
		justify-content: center;//垂直居中 竖向
		align-items: center;//水平居中 横向
}

.border{
		border:2rpx solid red;//边框&颜色
		border-radius: 50rpx;//圆角
		background-color: white;//背景色
		box-shadow: 8rpx 8rpx 8rpx 0rpx red  //阴影 x偏移 Y偏移 半径 扩展宽度 颜色
	}

</style>

list用法 如果item.name 不生效 换成 item["name"]

html 复制代码
<view v-for="(item,i) in list" :key="i" @click="itemOnClick(i)">
<image style="height: 20rpx;width: 20rpx;" :src="item.icon"></image>
<view style="font-size: 34rpx; color: white" >  索引值:{{item.name}}</view>
					<view style="font-size: 34rpx; color: white" >  索引值:{{item.title}}</view>
</view>
export default {
		data() { 
			return {
				title: 'Hello',
				list:[{
					id:0,
					name:"111",
					title:"测试标题111"
				},
				{
					id:1,
					name:"222",
					title:"测试标题222"
				},
				{
					id:3,
					name:"333",
					title:"测试标题333"
				}
				]
			}
			
		}

组件的引入

import 别名 from '地址'

components:{

别名

}

view的创建和移除 v-if="" true 创建 false 移除

html 复制代码
<template>

    <indexs v-if="true"></indexs>//v-if 控制是否创建

</template>
<script>
	import indexs from '../index.vue'
	components: {
			indexs
		}
</script>

view的显示和隐藏 v-show ="" true 显示 false 隐藏

html 复制代码
<template>

    <indexs v-show="true"></indexs>//v-show 控制是否显示

</template>
<script>
	import indexs from '../index.vue'
	components: {
			indexs
		}
</script>

输入框 input

html 复制代码
<input password="true"  placeholder="请输入密码" v-model="userPwd">
</input>

数据存储

html 复制代码
<script>
mounted(){//页面首次进来
   uni.setStorageSync("userName",this.userName);//同步存储数据
			this.userName = uni.getStorageSync("userName");//同步获取数据
			this.userPwd = uni.getStorageSync("userPwd");
		}
</script>

网络请求 UNIApp

地址('https://blog.csdn.net/Spy003/article/details/130979354')

java 复制代码
const BASE_URL = 'https://用你自己的url替换'; // 设置基本请求 URL
 
const requestInterceptor = (config) => {
    // 添加请求拦截逻辑
    // 在这里可以对请求进行处理,例如添加请求头、签名等
    config.header = {
        ...config.header
    };
    return config;
};
 
const responseInterceptor = (response) => {
    // 添加响应拦截逻辑
    // 在这里可以对响应进行处理,例如处理错误码、数据解析等
    if (response.statusCode === 200) {
        return response.data;
    } else {
        throw new Error('Request failed with status code ' + response.statusCode);
    }
};
 
 
const request = (config) => {
    const requestConfig = {
        ...config,
        header: requestInterceptor(config).header,
        url: BASE_URL + config.url,
    };
 
    return new Promise((resolve, reject) => {
        uni.request({
            ...requestConfig,
            success: (res) => {
                try {
                    const responseData = responseInterceptor(res);
                    resolve(responseData);
                } catch (error) {
                    reject(error);
                }
            },
            fail: (err) => {
                reject(err);
            },
        });
    });
};
 
export const get = (url, params = {}) => {
    const config = {
        url,
        method: 'GET',
        data: params,
    };
 
    return request(config);
};
 
export const post = (url, data = {}) => {
    const config = {
        url,
        method: 'POST',
        data,
    };
 
    return request(config);
};
相关推荐
虾球xz1 小时前
游戏引擎学习第55天
学习·游戏引擎
oneouto1 小时前
selenium学习笔记(二)
笔记·学习·selenium
还这么多错误?!1 小时前
uniapp微信小程序,使用fastadmin完成一个一键获取微信手机号的功能
微信小程序·小程序·uni-app
sealaugh321 小时前
aws(学习笔记第十九课) 使用ECS和Fargate进行容器开发
笔记·学习·aws
炭烤玛卡巴卡2 小时前
学习postman工具使用
学习·测试工具·postman
IT 前端 张2 小时前
Uniapp 手机基座调试App 打包成Apk文件,并上传到应用商店
uni-app
User_undefined2 小时前
uniapp Native.js原生arr插件服务发送广播到uniapp页面中
android·javascript·uni-app
web135085886352 小时前
uniapp小程序使用webview 嵌套 vue 项目
vue.js·小程序·uni-app
麦兜*2 小时前
轮播图带详情插件、uniApp插件
前端·javascript·uni-app·vue
veminhe2 小时前
uni-app使用组件button遇到的问题
uni-app·vue