var fileName = "wanjunshijiecom 2022-02-13 at 20.38.28.jpg";
方法1
var fileExtension = fileName.substring(fileName.lastIndexOf('.'...
yekong
3年前 (2022-03-04)
喜欢
enablePullDownRefresh
{
"path": "pages/ucenter/autograph",
"style": {
"navigationBarTitleText&q...
yekong
3年前 (2022-03-03)
喜欢
原生小程序转uniapp
安装依赖
sudo npm install miniprogram-to-uniapp -g
查看是否安装成功
wtu -V
转换
命令加文件目录
wtu -i /Users/zhaowanjun/Downloads/signature-pad-w...
yekong
3年前 (2022-03-03)
喜欢
import Qs from 'qs' //引入qs库
config.data = Qs.stringify(config.data)
header设置
'Content-Type': 'application/x-www-form-urlencoded; charset=UT...
yekong
3年前 (2022-02-26)
喜欢
uniapp微信小程序开发需要配置双语,并且记录语言,下次进入小程序保留之前语言配置。
安装语言依赖插件
npm i vue-i18n --save
main.js配置
import App from './App'
import uView from '@/uni_modu...
yekong
3年前 (2022-02-26)
喜欢
uniapp在微信小程序内调用支付代码
uni.requestPayment({
"provider": "wxpay",
"orderInfo": {
"appid"...
yekong
3年前 (2022-02-25)
喜欢
uniapp开发app需要将经纬度转为gcj-02转为百度经纬度
获取经纬度
类型 默认为 wgs84 返回 gps 坐标,gcj02 返回国测局坐标,可用于 uni.openLocation 和 map 组件坐标,App 和 H5 需配置定位 SDK 信息才可支持 gcj02。...
yekong
3年前 (2022-02-25)
喜欢
<template>
<view class="flex-col page">
<view class="flex-col group_5">
<view class="jus...
yekong
3年前 (2022-02-24)
喜欢
uniapp开发app时,部分页面,需要用到下拉刷新数据。
page配置
开启enablePullDownRefresh
{
//设备详情
"path": "pages/equipment/detail",
"...
yekong
3年前 (2022-02-22)
喜欢
uniapp需要一个功能,监听到推送并播放语音,这需要receive,使用receive需要透传
import src from '@/static/mp3/msg.mp3'
export default {
onLaunch: function() {
consol...
yekong
3年前 (2022-02-22)
喜欢