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