赞
踩
Android平台云端打包证书使用说明 https://ask.dcloud.net.cn/article/35985#server
Android平台签名证书(.keystore)生成指南 https://ask.dcloud.net.cn/article/35777
keytool -genkey -alias <testalias> -keyalg RSA -keysize 2048 -validity 36500 -keystore <test.keystore>
参数 | 说明 |
---|---|
testalias | 别名 |
validity | 有效时间,单位天,36500是100年 |
test.keystore | keystore的文件名称 |
keytool -list -v -keystore <keystore文件>
响应如下:
"pages": [
{
"path": "<页面Path>",
"style": {
"navigationBarTitleText": "",
"app-plus": {
"titleNView": {
"buttons": [
{
"float":"left",
"fontSize":"26px",//按钮上文字的大小,可以不写单位
"width":"200",
"fontSrc":"/static/iconfont1.ttf", //按钮的图片来源
"text":"\u<字体编码>" //按钮的unicode代码
}
]
}
}
}
},
uni.getLocation({ //uniapp获取定位。
type: 'gcj02',
success: (res) => {
$http.request({
url: `https://apia.yikeapi.com/geocode/?appid=45478629&appsecret=2hSMcDve&output=json&location=${res.longitude},${res.latitude}`, //使用易客API依据经纬度获取位置
method: 'get',
}).then((yikeRes) => {
if (yikeRes.errcode === 0) {
//解析结果获取城市信息
let locationCity = yikeRes.regeocode.addressComponent.city;
//刷新图标信息,添加城市信息。
let page = pages[pages.length-1];
let currentWebview = page.$getAppWebview();
let titleObj = currentWebview.getStyle().titleNView;
titleObj.buttons[1].text = "\ue662 " + locationCity;
titleObj.buttons[1].fontSize = "17";
currentWebview.setStyle({
titleNView:titleObj
})
}
});
},
fail(err) {},
complete(res) {}
});
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。