腾讯im官方文档
腾讯im官方文档
根据文档说明,我们可以看到IM的uniapp版本 这里我们选择国内的gitee地址进行查看
gitee地址
gitee地址
按照readme的说明文档进行相关操作。注册账号,然后下载代码安装依赖。
# 命令行执行
git clone http...
yekong
3年前 (2022-02-02)
喜欢
创建文件weatcher
app/controller/weatcher.js
'use strict';
const Controller = require('egg').Controller;
const axios = require('axios');
class...
yekong
3年前 (2022-02-02)
喜欢
安装依赖
npm i axios --save
引入
const axios = require('axios');
使用实例eggjs 使用高德地图查询天气
...
yekong
3年前 (2022-02-02)
喜欢
computed: {
remark: function() {
var msg = this.item.remark.replace(/<\/?[^>]*>/g, ''); //去除HTML Tag
msg = msg.replace(/...
yekong
3年前 (2022-01-31)
喜欢
截取前24个字符
value.substring(0,24)
...
yekong
3年前 (2022-01-31)
喜欢
<template>
<div class="avatar">
<u--image width="64rpx" height="64rpx" :src="configs.f...
yekong
3年前 (2022-01-31)
喜欢
uniapp vue 过滤内容显示组件
/**
* @Author: 858834013@qq.com
* @Name: userType
* @Date: 2022年01月31日
* @Desc: 根据类型返回内容
*/
<template>
<div>...
yekong
3年前 (2022-01-31)
喜欢
uniapp 开发时,发现使用了u-navbar 再在下面使用吸顶u-sticky 会出现重贴的情况
可以调整一下,将想要吸顶的地方和u-navbar放在一块
调整前
<u-navbar leftText=" " leftIconColor="...
yekong
3年前 (2022-01-30)
喜欢
uniapp 开发自定义确认弹窗
<template>
<div>
<div @click="show=true">
<slot></slot>
</div>
<...
yekong
3年前 (2022-01-29)
喜欢
uniapp开发 结合uview单选框样式自定义
<template>
<view class="group_8">
<text class="text_15">添加外部链接地址</text...
yekong
3年前 (2022-01-28)
喜欢