02 2023 档案

摘要:一,项目中启用session 1,app/middleware.php 添加如下一行 //Session初始化 \think\middleware\SessionInit::class 2,注意给runtime目录加入写权限: 例: liuhongdi@lhdpc:/data/php/admapi$ 阅读全文
posted @ 2023-02-28 16:15 刘宏缔的架构森林 阅读(511) 评论(0) 推荐(0) 编辑
摘要:一,代码: 在微信小程序中,字体文件不允许使用本地文件 @font-face { font-family: "kaiti"; src: url("https://spkf-zsxn-prod.s3.cn-north-1.amazonaws.com.cn/pic/livecenter/kaiti.tt 阅读全文
posted @ 2023-02-26 14:37 刘宏缔的架构森林 阅读(804) 评论(0) 推荐(0) 编辑
摘要:一,官网地址: https://www.iconfont.cn/ 如图: 说明:刘宏缔的架构森林是一个专注架构的博客,地址:https://www.cnblogs.com/architectforest 对应的源码可以访问这里获取: https://github.com/liuhongdi/ 或:  阅读全文
posted @ 2023-02-26 10:42 刘宏缔的架构森林 阅读(62) 评论(0) 推荐(0) 编辑
摘要:一,官方文档地址: https://uniapp.dcloud.net.cn/api/system/info.html# 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.com/index.ph 阅读全文
posted @ 2023-02-25 22:04 刘宏缔的架构森林 阅读(472) 评论(0) 推荐(0) 编辑
摘要:一,代码: 1,页面代码: <template> <view> <web-view :fullscreen="true" :style="{height:height+'px'}" :webview-styles="webviewStyles" :src='websrc' allow></web-v 阅读全文
posted @ 2023-02-25 14:11 刘宏缔的架构森林 阅读(580) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <view style="margin-left: 20rpx;margin-top: 20rpx; width:710rpx;height:710rpx;background: gray;"> <image class="banner" mode=" 阅读全文
posted @ 2023-02-25 08:56 刘宏缔的架构森林 阅读(1688) 评论(0) 推荐(0) 编辑
摘要:一,代码: 说明:我们使整个顶部导航栏透明,只保留一个退回上一页的按钮 模板 <!-- 自定义导航栏 --> <view class="navBarBox" style="position: fixed;top:0;z-index: 1000;"> <!-- 状态栏占位 --> <view clas 阅读全文
posted @ 2023-02-24 18:45 刘宏缔的架构森林 阅读(1191) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <view style="margin-left: 20rpx;margin-top: 20rpx; width:710rpx;height:710rpx;background: gray;"> <image class="banner" mode=" 阅读全文
posted @ 2023-02-24 16:35 刘宏缔的架构森林 阅读(1800) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <button style="width:710rpx;height:80rpx;" @click="getSetting">打开地图</button> </view> </template> <script> export default { dat 阅读全文
posted @ 2023-02-24 14:39 刘宏缔的架构森林 阅读(1131) 评论(0) 推荐(0) 编辑
摘要:一,getlocation时报错: 代码: <template> <view> <button style="width:710rpx;height:80rpx;" @click="openMap">打开地图</button> </view> </template> <script> export 阅读全文
posted @ 2023-02-24 14:23 刘宏缔的架构森林 阅读(627) 评论(0) 推荐(0) 编辑
摘要:一,打开调试模式 如果没有在微信后台配置业务域名, 在真机测试时不能正常访问接口站, 则可以做如下配置: 打开调试后,非业务域名的接口也可以访问了 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch 阅读全文
posted @ 2023-02-24 10:52 刘宏缔的架构森林 阅读(181) 评论(0) 推荐(0) 编辑
摘要:一,代码: 说明:xcxuserinfo是服务端得到用户信息的接口, 我们用code作为参数传递给服务端,由服务端得到openid再得到用户信息然后返回 <template> <view> <button class="login-wxpng" open-type="getUserInfo" @ge 阅读全文
posted @ 2023-02-23 18:35 刘宏缔的架构森林 阅读(591) 评论(0) 推荐(0) 编辑
摘要:一,代码: 1,login.nvue <template> <view> <view style="margin-right: 60rpx;margin-left: 60rpx;margin-top: 60rpx;"> <uni-forms ref="form" :modelValue="formD 阅读全文
posted @ 2023-02-23 10:56 刘宏缔的架构森林 阅读(337) 评论(0) 推荐(0) 编辑
摘要:一,安装firebase/php-jwt扩展: 1,命令: liuhongdi@lhdpc:/data/php/admapi$ composer require firebase/php-jwt 2,安装成功后的位置: 3,查看firebase/php-jwt的版本: liuhongdi@lhdpc 阅读全文
posted @ 2023-02-23 10:31 刘宏缔的架构森林 阅读(360) 评论(0) 推荐(0) 编辑
摘要:一,代码: 说明:向markers数组中push数据或直接修改数组中的数据都不会引起map的刷新, 注意使用这个方法: this.markers = [...markers]; <template> <view> <map class="map" :latitude="latitude" :long 阅读全文
posted @ 2023-02-22 16:20 刘宏缔的架构森林 阅读(798) 评论(0) 推荐(0) 编辑
摘要:一,代码: 1,缓存写入:在被打开页面的onLoad事件中写入把打开的年级和学期写入缓存 //加载时访问接口得到数据 onLoad(options) { // 页面创建时执行 console.log("页面加载");//记录最新访问的列表 let gradeName = getApp().$util 阅读全文
posted @ 2023-02-22 14:40 刘宏缔的架构森林 阅读(247) 评论(0) 推荐(0) 编辑
摘要:一,运行 运行->运行到小程序模拟器->微信开发者工具 出现报错: 15:41:27.814 [微信小程序开发者工具] [error] IDE service port disabled. To use CLI Call, please enter y to confirm enabling CLI 阅读全文
posted @ 2023-02-22 14:26 刘宏缔的架构森林 阅读(813) 评论(0) 推荐(0) 编辑
摘要:一,官方文档地址: https://uniapp.dcloud.net.cn/component/uniui/uni-transition.html 二,代码: <template> <view> <view class="animation-element-wrapper"> <uni-trans 阅读全文
posted @ 2023-02-21 18:42 刘宏缔的架构森林 阅读(4521) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <!-- 标签页 --> <view class="tabs"> <view class="tabItem" v-for="(item, index) in tabList" :key="index" @click="tabSelect(item.id 阅读全文
posted @ 2023-02-21 14:58 刘宏缔的架构森林 阅读(809) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <movable-area style="width:750rpx;height:750rpx;background: #ffff00;"> <movable-view style="width:120rpx;height:120rpx;border- 阅读全文
posted @ 2023-02-21 11:12 刘宏缔的架构森林 阅读(1185) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <button @click="getNetwork">得到网络类型</button> </view> </template> <script> export default { data() { return { } }, methods: { ge 阅读全文
posted @ 2023-02-21 10:45 刘宏缔的架构森林 阅读(62) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <button @click="scanCode">扫码</button> <text>扫码类型:{{scanType}}</text> <text>扫码内容:{{result}}</text> </view> </template> <script> 阅读全文
posted @ 2023-02-19 20:05 刘宏缔的架构森林 阅读(430) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <input class="btn" style="background: #ffff00;" type="text" v-model="content"/> <button class="btn" @click="setClipboard">复制到剪 阅读全文
posted @ 2023-02-19 19:18 刘宏缔的架构森林 阅读(636) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <button @click="call">拨打电话</button> </view> </template> <script> export default { data() { return { } }, methods: { call(){ un 阅读全文
posted @ 2023-02-19 18:08 刘宏缔的架构森林 阅读(290) 评论(0) 推荐(0) 编辑
摘要:一,基础配置 打开项目的manifest.json文件 主要是要有appid和应用名称 应用版本名称和版号也需要 说明:appid是根据应用名称从在开发者中心中创建的应用列表获取, 如果没有创建,点击重新获取会自动创建一个应用同时生成appid 如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 阅读全文
posted @ 2023-02-19 13:18 刘宏缔的架构森林 阅读(4131) 评论(1) 推荐(0) 编辑
摘要:一,android手机连接电脑,此处是一台三星note8机器 在手机下拉菜单中,选中usb的信息, 此处要选择: usb网络共享 2,此处要允许usb调试(忘记截图了,从网上借用一张) 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: ht 阅读全文
posted @ 2023-02-19 10:02 刘宏缔的架构森林 阅读(267) 评论(0) 推荐(0) 编辑
摘要:一,创建css样式文件 1,目录如下: 2,common.css代码: .tipStyle{ margin-top: 40rpx; font-size: 40rpx; color:#9013FE; text-align: center; } @font-face { font-family: my- 阅读全文
posted @ 2023-02-18 22:25 刘宏缔的架构森林 阅读(427) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view style=""> <view style="margin-top:30rpx; width:710rpx;margin-left: 20rpx; text-align: center;font-size: 50rpx;"> <!--#ifdef H5- 阅读全文
posted @ 2023-02-18 21:52 刘宏缔的架构森林 阅读(542) 评论(0) 推荐(0) 编辑
摘要:一,复制字体文件到static目录下,如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.com/index.php/2023/06/04/uniapp-nvue-he-vue-jun-yi 阅读全文
posted @ 2023-02-17 16:35 刘宏缔的架构森林 阅读(248) 评论(0) 推荐(0) 编辑
摘要:一,页面跳转与参数传递 //跳转到详情页 goItem:function(id,title) { uni.navigateTo({ url: '../item/item?id='+id+'&title='+title }); }, 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https:// 阅读全文
posted @ 2023-02-16 18:15 刘宏缔的架构森林 阅读(624) 评论(0) 推荐(0) 编辑
摘要:一,目录结构: 在项目下创建common目录,然后创建util.js文件 功能说明:因为代码中的url要兼容h5的开发模式(需要配置解决跨域)和app的直接访问, 演示的函数功能即返回两种情况下均可用的url 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtou 阅读全文
posted @ 2023-02-16 17:47 刘宏缔的架构森林 阅读(1148) 评论(0) 推荐(0) 编辑
摘要:一,php代码: public function list() { ... header('Access-Control-Allow-Origin: *'); header("Access-Control-Allow-Headers: Origin, X-Requested-With, Conten 阅读全文
posted @ 2023-02-15 10:07 刘宏缔的架构森林 阅读(1179) 评论(0) 推荐(0) 编辑
摘要:一,官网文档地址: https://uniapp.dcloud.net.cn/collocation/pages.html#tabbar 如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch. 阅读全文
posted @ 2023-02-14 16:01 刘宏缔的架构森林 阅读(497) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <uni-list> <uni-list-item :border="false" v-for="(item, index) in itemList" :key="index"> <template v-slot:body > <view @click 阅读全文
posted @ 2023-02-14 14:59 刘宏缔的架构森林 阅读(662) 评论(0) 推荐(0) 编辑
摘要:一,代码: <template> <view> <uni-list > <uni-list-item :border="false" v-for="(item, index) in itemList" :key="index"> <template v-slot:body > <view @clic 阅读全文
posted @ 2023-02-14 14:14 刘宏缔的架构森林 阅读(2483) 评论(0) 推荐(0) 编辑
摘要:一,官方文档地址: https://uniapp.dcloud.net.cn/api/ui/prompt.html#showtoast 如图: 二,演示代码 <template> <view> <button style="width: 600rpx;margin-top: 30rpx;" type 阅读全文
posted @ 2023-02-13 16:31 刘宏缔的架构森林 阅读(113) 评论(0) 推荐(0) 编辑
摘要:一,配置pages.json 说明:给需要下拉刷新的页面设置 "enablePullDownRefresh": true 其默认值是false 代码: { "path" : "pages/list1/list1", "style" : { "navigationBarTitleText": "", 阅读全文
posted @ 2023-02-13 15:42 刘宏缔的架构森林 阅读(1684) 评论(0) 推荐(0) 编辑
摘要:一,演示代码: 说明:演示代码中实现的功能: 1,各个列表项展示不同类型的内容 2,取消uni-list-item默认样式中的padding 3, 取消uni-list-item默认样式中的border <template> <view> <uni-list > <uni-list-item :bo 阅读全文
posted @ 2023-02-13 14:22 刘宏缔的架构森林 阅读(1595) 评论(0) 推荐(0) 编辑
摘要:一,复制字体文件到static目录下,如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.com/index.php/2023/06/04/uniapp-shi-yong-zi-ding-y 阅读全文
posted @ 2023-02-12 21:37 刘宏缔的架构森林 阅读(323) 评论(0) 推荐(0) 编辑
摘要:一,未配置跨域时的报错信息: Access to XMLHttpRequest at 'http://api.lhdtest.net/item/list' from origin 'http://localhost:8081' has been blocked by CORS policy: No 阅读全文
posted @ 2023-02-12 15:40 刘宏缔的架构森林 阅读(2382) 评论(0) 推荐(0) 编辑
摘要:一,查看组件的文档: 文档地址 https://uniapp.dcloud.net.cn/component/ 如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.com/index.php 阅读全文
posted @ 2023-02-12 11:33 刘宏缔的架构森林 阅读(624) 评论(0) 推荐(0) 编辑
摘要:一,配置用到的第三方库 dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class 阅读全文
posted @ 2023-02-10 15:56 刘宏缔的架构森林 阅读(545) 评论(0) 推荐(0) 编辑
摘要:一,配置用到的第三方库 dependencies: flutter: sdk: flutter # The following adds the Cupertino Icons font to your application. # Use with the CupertinoIcons class 阅读全文
posted @ 2023-02-10 14:58 刘宏缔的架构森林 阅读(406) 评论(0) 推荐(0) 编辑
摘要:一,dart代码: 1,list.dart import 'package:flutter/material.dart'; import 'package:dio/dio.dart'; import 'package:demolist/model/ListOne.dart'; import 'dar 阅读全文
posted @ 2023-02-09 16:30 刘宏缔的架构森林 阅读(487) 评论(0) 推荐(0) 编辑
摘要:一,uni-app相关 1,官网地址: https://www.dcloud.io/ 2,hbuilderx地址 https://www.dcloud.io/hbuilderx.html 如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原 阅读全文
posted @ 2023-02-09 14:38 刘宏缔的架构森林 阅读(785) 评论(0) 推荐(0) 编辑
摘要:一,查看各个取值的效果 为了直观起见,我们使用了两张图片演示,分别为横片和竖片 1,BoxFit.contain 说明:图片等比例进行缩放, 直到图片的高或者宽填充满控件 2,BoxFit.cover 说明: 图片等比例缩放,直到图片的宽和高都充满整个控件, 图片有可能超出控件的范围,导致显示不完整 阅读全文
posted @ 2023-02-08 16:23 刘宏缔的架构森林 阅读(224) 评论(0) 推荐(0) 编辑
摘要:一,flutter_screenutil库的地址: https://pub.dev/packages/flutter_screenutil 代码地址: https://github.com/OpenFlutter/flutter_screenutil 说明:刘宏缔的架构森林是一个专注架构的博客, 网 阅读全文
posted @ 2023-02-08 14:50 刘宏缔的架构森林 阅读(736) 评论(0) 推荐(0) 编辑
摘要:一,flutter代码 1,page/list.dart import 'package:flutter/material.dart'; import 'package:dio/dio.dart'; import 'package:demolist/model/list_goods.dart'; i 阅读全文
posted @ 2023-02-03 17:57 刘宏缔的架构森林 阅读(75) 评论(0) 推荐(0) 编辑
摘要:一,控制台报错信息: Exception caught by widgets library The following _CompileTimeError was thrown building ItemList(dirty, dependencies: [_InheritedTheme, _Lo 阅读全文
posted @ 2023-02-03 17:51 刘宏缔的架构森林 阅读(311) 评论(0) 推荐(0) 编辑
摘要:一,在flutter项目中引入字体文件 在项目中创建存放字体的文件夹fonts,并把要使用到的字体文件复制到此文件夹下: 如图: 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.com/inde 阅读全文
posted @ 2023-02-01 18:21 刘宏缔的架构森林 阅读(683) 评论(0) 推荐(0) 编辑
摘要:一,思源黑体、思源宋体、思源等宽 官方地址: https://github.com/orgs/adobe-fonts/repositories 说明:刘宏缔的架构森林是一个专注架构的博客, 网站:https://blog.imgtouch.com原文: https://blog.imgtouch.c 阅读全文
posted @ 2023-02-01 17:30 刘宏缔的架构森林 阅读(501) 评论(0) 推荐(0) 编辑