uniapptext不能放。你的好友给你发送一些好看的风景照时,想要保存,那么在snapchat怎样添加到手机相册呢接下来小编为大伙讲述snapchat添加到手机相册教程,希望可以帮助到有需要的朋友。
在ios和Android上可视区 包括屏幕的上方的大小,所以要减去这个大小
在微信小程序中就没有包括,所以小程序不需要减
<view class="personal_Image">
<u-image v-if="avarShow" :src="_settingConfigimg+personalListsyj_img" @click="alterHeade">
</u-image>
<u-image v-else :src="_settingConfigimg+avaer" @click="alterHeade"></u-image>
</view>
alterHeade() {
unichooseImage({
count: 1, // 头像只上传1张
sourceType: ['original',
'compressed'
], // way是点击时传入的打开方式相机或相册 original 原图,compressed 压缩图,默认二者都有
success: async (chooseImageRes) => {
consolelog('chooseImageRes', chooseImageRes)
//获取头像token的接口
// const data = await this$apiapiusergetImgToken();
const tempFilePaths = chooseImageRestempFilePaths;
uniuploadFile({
url: this_settingConfigapi + 'upload', // 上传地址
filePath: tempFilePaths[0],
name: 'file',
formData: {
// token: datadatabody, //头像token,参考返回数据
// key: chooseImageRestempFiles[0], // 名,移动端可能不存在name,可修改为 key: new Date()getTime()+"png" 随机
type: 1,
path: chooseImageRestempFiles[0],
// openid: this_settingConfigopenid
},
success: (uploadFileRes) => {
// consolelog('uploadFileRes', uploadFileRes); //是一个字符串
var stra = JSONparse(uploadFileResdata);
// consolelog('', stra); //是一个字符串
thisavaer = stradatapathyj_path
// thisavarShow = false
thisReq('PersonalData/upImg', {
yj_img: stradatapathyj_id
}, 'post')
then(res => {
// consolelog(resdata)
thisdataLists()
})catch(err => {})
}
});
}
})
}
1、 点击某个按钮,d出请求微信授权界面。
2、点击允许按钮,获取用户微信绑定的手机号与openId
3、 请求后端接口,实现登录。
微信公众平台--->登陆--->开发--->开发管理--->开发设置 查看APPID、secret
在把上面获取的appid session_key encryptedData iv传入以下方法中,得到最后解密的信息
解密后的信息
/存
unisetStorage({
key: 'storage_key',
data: {
保存的内容
token:thistoken
},
success: function () {
// consolelog('success');
}
});
<view @click=getUserInfo">获取微信信息</view>
// 获取用户信息
getUserInfo() {
if(thisisShow){//防止多次点击
thisisShow = false
unigetUserProfile ({
desc: "获取个人信息",
success: (res) => {
thisuserInfo = resuserInfo
thisisShow = true
},
fail: getUserProfileFail => {
thisisShow = true
unishowToast({
title: '授权失败',
mask: false,
duration: 1000,
icon: 'none',
})
}
})
}
},
<button type="default" open-type="getPhoneNumber" @getphonenumber="ongetPhoneNumber">授权获取手机号登录</button>
// 获取手机号码
ongetPhoneNumber(e) {
if (edetailerrMsg == "getPhoneNumber:fail user deny") { //用户拒绝授权
//拒绝授权后d出一些提示
unishowToast({
title: '拒绝授权',
mask: false,
duration: 1000,
icon: 'none',
})
} else { //允许授权
apppostData('url',{
key: appglobalDatasession_key,
encryptedData: edetailencryptedData,
iv: edetailiv
})then(res=>{
consolelog("获取手机号码",res)
thismobile = resdataphoneNumber
unisetStorageSync('xmfTel',resdataphoneNumber)
})catch(err=>{
consolelog(err)
})
}
},
以上就是关于uniapptext能不能放图片全部的内容,包括:uniapptext能不能放图片、uniapp中不同设备获取可视区的兼容方法、uni-app上传头像/更改头像等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)