摘要:
参考地址:https://blog.csdn.net/qq_41227106/article/details/108465104 出现错误的原因如下 1、是微信小程序 2、把请求接口统一封装,开始请求接口时showLoading,请求接口后hideLoading 3、一个页面同时请求多个接口,由于请 阅读全文
摘要:
<template> <view> <view>这是登录界面 <button @click="RedirdectToMain">跳转到首页</button> </view> </view> <view> <uni-file-picker v-model="imageValue" fileMediat 阅读全文
摘要:
父组件: <template> <view> <view>这是登录界面 <button @click="RedirdectToMain">跳转到首页</button> </view> </view> <view> <uni-file-picker v-model="imageValue" fileM 阅读全文
摘要:
问题描述提示:uni-ui 组件库中 uni-easyinput 输入框组件 相关使用问题 在使用 uni-easyinput 组件时,你会发现,默认情况下你输入内容的长度最大是140 原因是,uni-easyinput 组件内封装的 maxlength属性,在不设置的情况下,默认值为140。我们可 阅读全文
摘要:
一 打开微信小程序首先打开登录界面 在一键绑定当前微信账号后,才可以进到内部进行操作的方法, 1 新建一个login的登录界面 2 page.json中将login页面的配置放到最前面。 3 在login页面中添加跳转到首页的方法。一般也是绑定账号后的跳转方法。 <script> export de 阅读全文
摘要:
一 基本使用 <script > let func = function mineReadFile(path){ // 注意这里必须是箭头函数。规范要这样写。 return new Promise((resolve, reject) => { if(path == "1"){ resolve("33 阅读全文
摘要:
造成乱码的问题是: 文档保存的时候选择的编码方式和打开文档时使用的编码方式不一样。 当然现在都是统一使用utf-8:万国码。 正常文档格式: <!DOCTYPE html> <head> <meta charset="utf-8"> <title>标题</title> </head> <body> 阅读全文
摘要:
<template> <view class="container"> <view v-for="(item,index) in videoList" :key="index"> <label style="display: block;width: 100%; height: 40px; back 阅读全文
摘要:
一 安装vue-i18n npm i vue-i18n@6 二 添加相关语言配置 如 en.json: { "locale.auto": "System", "locale.en": "English", "locale.zh-hans": "简体中文", "locale.zh-hant": "繁体 阅读全文
摘要:
参考:https://www.cnblogs.com/chinasoft/p/16787959.html 注意内容: --net 5 public static IHostBuilder CreateHostBuilder(string[] args) => Host.CreateDefaultBu 阅读全文