上一页 1 2 3 4 5 6 7 8 ··· 30 下一页
摘要: 实现效果 使用antd中的Table,设置固定列宽,当文字超出时省略,先看实现效果: 方法一 部分代码 使用ellipsis进行省略,使用Tooltip(引入自antd)展示全部的内容。 const TABLE_COL_WIDTH = 200; const columns = [ { title: 阅读全文
posted @ 2023-12-15 13:26 ZerlinM 阅读(707) 评论(0) 推荐(0) 编辑
摘要: 首先在app.config.json中配置 requiredBackgroundModes: [ 'location' ], requiredPrivateInfos: [ 'getLocation', 'onLocationChange', 'startLocationUpdate', ], pe 阅读全文
posted @ 2023-12-13 15:28 ZerlinM 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 问题 使用了react-native-webview的WebView嵌套h5页面,但是当h5发版之后,重新打开app,h5还是发版前的页面。 并且这个缓存严重,每次都要清理缓存或者重装app,页面不能及时更新,影响用户体验。 解决 rn项目中,在h5链接后边拼接时间戳,代码如下: 注意:这里缓存使用 阅读全文
posted @ 2023-12-13 14:44 ZerlinM 阅读(121) 评论(0) 推荐(0) 编辑
摘要: 高德地图 WGS84转GCJ02 export function wgs84ToGcj02(lng, lat) { if (out_of_china(lng, lat)) { return [lng, lat] } else { var dlat = transformlat(lng - 105.0 阅读全文
posted @ 2023-12-08 10:27 ZerlinM 阅读(543) 评论(0) 推荐(0) 编辑
摘要: 代码如下: import ReactDOM from 'react-dom'; import { Spin } from 'antd'; export const showGlobalLoading = () => { const dom = document.createElement('div' 阅读全文
posted @ 2023-12-01 15:56 ZerlinM 阅读(312) 评论(0) 推荐(0) 编辑
摘要: ReactDOM.createPortal(child, container) Portal 将提供一种将子节点渲染到 DOM 节点中的方式,该节点存在于 DOM 组件的层次结构之外。 因此 Portals 适合脱离文档流(out of flow) 的组件,特别是 position: absolut 阅读全文
posted @ 2023-11-17 15:22 ZerlinM 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 方式一:使用react-draggable实现拖拽 安装 yarn add react-draggable 使用 import Draggable from 'react-draggable'; export default function TableModal() { const [bounds 阅读全文
posted @ 2023-11-14 16:38 ZerlinM 阅读(1345) 评论(0) 推荐(0) 编辑
摘要: 问题 需要判断url是否可用,再去执行其他操作,代码如下: const loadScript = (url) => { return new Promise((resolve, reject) => { const script = document.createElement('script') 阅读全文
posted @ 2023-11-07 13:49 ZerlinM 阅读(596) 评论(0) 推荐(0) 编辑
摘要: 使用postrender监听,代码如下: map.once('postrender', function(event) { // do something... }); 阅读全文
posted @ 2023-10-28 14:22 ZerlinM 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 实现效果 代码如下: import pump from '@/gis/assets/image/pump.png'; series: [ { type: 'lines', coordinateSystem: 'bmap', markPoint: { // symbol: `image://${pum 阅读全文
posted @ 2023-10-26 20:51 ZerlinM 阅读(42) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 30 下一页