<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/">
  <channel>
    <title><![CDATA[拍拍尘土]]></title> 
    <link>http://blog.xg98.com/</link> 
    <description><![CDATA[五月枇杷黄，太湖银鱼肥]]></description> 
    <language>zh-cn</language> 
    <copyright><![CDATA[Copyright 2026, 拍拍尘土]]></copyright> 
    <webMaster><![CDATA[cxosoft@gmail.com (Admin)]]></webMaster> 
    <generator>LBS v2.0.313</generator> 
    <pubDate>Mon, 04 May 2026 19:35:38 +0800</pubDate> 
    <ttl>60</ttl>
  
    <item>
      <title><![CDATA[uview2.0的u-action-sheet内容太多被撑开溢出屏幕高度，无法滚动解决办法]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=3009]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Thu, 20 Nov 2025 10:31:05 +0800</pubDate> 
      <description><![CDATA[打开\node_modules\uview-ui\components\u-action-sheet\u-action-sheet.vue文件，<br /><br />找到<div class="code">&lt;view class=&quot;u-action-sheet__item-wrap&quot;&gt;&lt;/view&gt;</div><br />把它替换成<div class="code">&lt;scroll-view class=&quot;u-action-sheet__item-wrap&quot; scroll-y style=&quot;min-height: 100rpx;max-height: 700rpx;&quot;&gt;<br />。。。<br />&lt;/scroll-view&gt;</div><br /><br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" target="_blank"><img src="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" alt="http://blog.xg98.com/attachments/202511/20_103536_121.jpg" /></a></div><br /><br /><br />来源：<a href="https://blog.csdn.net/cyx924/article/details/154789117" title="https://blog.csdn.net/cyx924/article/details/154789117" target="_blank">https://blog.csdn.net/cyx924/article/details/154789117</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=3009]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uniapp——下拉刷新]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2985]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Sat, 07 Sep 2024 10:42:46 +0800</pubDate> 
      <description><![CDATA[p.s. 需要设置pages.json和具体pages页面相关内容，PullDownRefresh 部分<br /><div class="code">import {<br />&nbsp;&nbsp;onLoad,<br />&nbsp;&nbsp;onReachBottom,<br />&nbsp;&nbsp;onPullDownRefresh<br />} from &#39;@dcloudio/uni-app&#39;<br />onPullDownRefresh(() =&gt; {<br />&nbsp;&nbsp;getList()<br />&nbsp;&nbsp;setTimeout(() =&gt; {<br />&nbsp;&nbsp;&nbsp;&nbsp;uni.stopPullDownRefresh()<br />&nbsp;&nbsp;}, 1000);<br />})</div><br /><div class="code">{<br />&nbsp;&nbsp;&quot;path&quot;: &quot;pages/index/list&quot;,<br />&nbsp;&nbsp;&quot;style&quot;: {<br />&nbsp;&nbsp;&nbsp;&nbsp;&quot;navigationBarTitleText&quot;: &quot;列表&quot;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&quot;enablePullDownRefresh&quot;: true,<br />&nbsp;&nbsp;&nbsp;&nbsp;&quot;navigationStyle&quot;: &quot;custom&quot;<br />&nbsp;&nbsp;}<br />},</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2985]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uniapp的几个全局文件]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2984]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Thu, 05 Sep 2024 10:39:56 +0800</pubDate> 
      <description><![CDATA[pages.json 页面路由<br /><a href="https://uniapp.dcloud.net.cn/collocation/pages.html" title="https://uniapp.dcloud.net.cn/collocation/pages.html" target="_blank">https://uniapp.dcloud.net.cn/collocation/pages.html</a><br /><br /><br />manifest.json 应用配置<br /><a href="https://uniapp.dcloud.net.cn/collocation/manifest.html" title="https://uniapp.dcloud.net.cn/collocation/manifest.html" target="_blank">https://uniapp.dcloud.net.cn/collocation/manifest.html</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2984]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uniapp打包h5，刷新内页404（刷新404，首页正常），nginx情况下配置]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2983]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Thu, 05 Sep 2024 10:31:32 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. 配置了下nginx，404问题解决</span><br /><br /><b>环境</b><br />代码：uniapp+vue<br />线上环境：nginx<br />H5项目编译目录：如移动端名称“h5”，放在域名执行的根目录<br /><br /><b>问题分析</b><br />本地正常，线上404，是文件未找到，即文件路径错误,即域名：<br />www.yourdomain.com/h5 //正常访问<br />内页刷新404，原因看链接，正常是404链接是没有查h5里面的js，css，而是域名目录下的js，css，那就是针对目录问题，让程序执行/h5目录下的js，css<br /><br /><b>nginx配置</b><div class="code">location /h5 {<br />&nbsp;&nbsp;root  /www/wwwroot/jiaxin/public/h5; <br />&nbsp;&nbsp;#alias /www/wwwroot/jiaxin/public/h5; #这样也可以<br />&nbsp;&nbsp;try_files $uri $uri/ /index.html last;</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2983]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uni-app 更改默认组件样式解决uView  Checkbox 复选框不换行问题]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2980]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Fri, 23 Aug 2024 10:32:24 +0800</pubDate> 
      <description><![CDATA[一、说明<br /><br /> &nbsp; &nbsp; &nbsp; &nbsp; uView文档 Checkbox 复选框<br /><br /> &nbsp; &nbsp; &nbsp; &nbsp; vue组件编译后，会将 template 中的每个元素加入 [data-v-xxxx] 属性来确保 style scoped 仅本组件的元素而不会污染全局<br /><br /> &nbsp; &nbsp; &nbsp; &nbsp; 横向排列不换行，如下<div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202408/23_103459_1f6254ab98209e3f45d515a1da77a4cb.png" target="_blank"><img src="http://blog.xg98.com/attachments/202408/23_103459_1f6254ab98209e3f45d515a1da77a4cb.png" alt="http://blog.xg98.com/attachments/202408/23_103459_1f6254ab98209e3f45d515a1da77a4cb.png" /></a></div><br /><br /><br /><br />二、解决<br />1、在class前面 加入deep<br /><br /> &nbsp; &nbsp; &nbsp; &nbsp; 如果你期待通过如修改其子class的样式。来影响展示效果，直接增加class是没有任何效果的<br /> &nbsp; &nbsp; &nbsp; &nbsp; 需要在修改指定的组件样式class前面 加入deep才可以<div class="code">&lt;style lang=&quot;scss&quot; scoped&gt;<br />/deep/ .u-checkbox-group--row{<br />&nbsp;&nbsp;display: flex;</div>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2980]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uni踩坑笔记 - uView中文本域textarea 实现回车键换行]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2978]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Wed, 14 Aug 2024 09:37:02 +0800</pubDate> 
      <description><![CDATA[使用textarea组件的confirmType属性进行控制：<div class="code">&lt;u--textarea v-model=&quot;form.content&quot; confirmType=&quot;return&quot;&gt;&lt;/u--textarea&gt;</div><br /><br />默认值是done，按回车不会换行<br /><br /><b>其他属性值：</b><br />send - 发送<br />search - 搜索<br />next - 下一个<br />go - 前往<br />done - 完成<br />return - 换行<br /><br /><br />文章：<a href="https://blog.csdn.net/weixin_46737742/article/details/134370679" title="https://blog.csdn.net/weixin_46737742/article/details/134370679" target="_blank">https://blog.csdn.net/weixin_46737742/article/details/134370679</a>]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2978]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[hbuilder/hbuilderx 无法检测到模拟器的问题（或许是没有运行在默认端口）]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2969]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 07 May 2024 14:54:46 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. 多模拟器运行的时候，端口不一定是默认端口，uniapp在运行时找不到模拟器的情况，有可能原因为模拟器不是默认端口。</span><br />mumu可用通过 <a href="http://blog.xg98.com/article.asp?id=2968" title="http://blog.xg98.com/article.asp?id=2968" target="_blank">http://blog.xg98.com/article.asp?id=2968</a>  方法找到当前运行模拟器端口，然后在hbuilder中指定模拟器端口就可以。<br /><br /><br /><b>常用模拟器的默认端口</b><div class="code">夜神模拟器 端口号 ：62001<br />海马玩模拟器 端口号：26944<br />网易mumu模拟器端口号：7555<br />天天模拟器 端口号：6555<br />Android Studio自带模拟器 端口号: 5554</div><br /><br /><br /><b>连接步骤</b><br />打开cmd命令<br />命令行里 进入HBuilder\tools的目录<br />按住Shift +右键,选择打开命令行工具(powerShell)<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2969]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Uniapp使用mumu安卓模拟器来运行调试的方法]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2968]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 07 May 2024 14:20:11 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. 我在hbuilderx中设置mumu模拟器端口，然后指定了android studio的adb完整路径，没有设置环境变量path就可以正常调试了</span><br /><br /><br /><br />1、设置Mumu的显示为手机竖屏<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_142206_6522fa13a7524c56bfd46cfc550d5243.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_142206_6522fa13a7524c56bfd46cfc550d5243.png" alt="http://blog.xg98.com/attachments/202405/07_142206_6522fa13a7524c56bfd46cfc550d5243.png" /></a></div><br /><br />2、查看运行模拟器的端口号<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_142351_07fb6472dafc46889388c2775ce9dc82.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_142351_07fb6472dafc46889388c2775ce9dc82.png" alt="http://blog.xg98.com/attachments/202405/07_142351_07fb6472dafc46889388c2775ce9dc82.png" /></a></div><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_142355_92aa565382aa4e9594a64533c0742589.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_142355_92aa565382aa4e9594a64533c0742589.png" alt="http://blog.xg98.com/attachments/202405/07_142355_92aa565382aa4e9594a64533c0742589.png" /></a></div>[img]attachments/202405/07_142403_fae79]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2968]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[uniapp运行到安卓模拟器一直在“同步手机端程序文件完成“界面解决办法（android studio）]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2967]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 07 May 2024 14:11:36 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. 测试可行，建立android11+x86，然后hbuilder指定adb为android studio的adb就可以运行，不过还是用mumu方便</span><br /><br /><br />如果你是用的模拟器是android studio创建的模拟器，那么你需要新创建一个android11 + x86架构的模拟器：<div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_141723_8142c9482dc045b396b70cda3671a610.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_141723_8142c9482dc045b396b70cda3671a610.png" alt="http://blog.xg98.com/attachments/202405/07_141723_8142c9482dc045b396b70cda3671a610.png" /></a></div><br />创建完成后，启动模拟器：<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_141735_0e938e3199424ae98bdab3090b609c30.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_141735_0e938e3199424ae98bdab3090b609c30.png" alt="http://blog.xg98.com/attachments/202405/07_141735_0e938e3199424ae98bdab3090b609c30.png" /></a></div><br /><br />然后在hbuilder中重新运行到这个模拟器就可以了：[img]attachments/202405/07_141805_d247f403f]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2967]]></wfw:commentRss>
    </item>
      
    <item>
      <title><![CDATA[Uniapp安卓报错request:fail abort statusCode:-1 Failed to connect to localhost/127.0.0.1:8088]]></title> 
      <link><![CDATA[http://blog.xg98.com/article.asp?id=2966]]></link> 
      <category><![CDATA[uniapp]]></category> 
      <author><![CDATA[admin <null@null.com>]]></author> 
      <pubDate>Tue, 07 May 2024 14:04:55 +0800</pubDate> 
      <description><![CDATA[<span style="color:Red">p.s. uniapp在mumu模拟器中的安卓报错，一开始以为是不支持http，需要https。原来应该算是一个跨域的问题，改局域网IP可以解决</span><br /><div class="code">request:fail abort statusCode:-1 Failed to connect to localhost/127.0.0.1:8088</div><br />1.原因分析<br />报错为无法连接到localhost的后端接口，这是因为uniapp进行app开发真机调试时，真机和电脑应该在同一局域网下，否则无法发送请求到后端。<br />前端向后端的请求路径如下：<br /><div style="width: 100%;overflow-x : auto;"><a href="http://blog.xg98.com/attachments/202405/07_140716_3bd2f752b0e645e7acbb79734c7608b4.png" target="_blank"><img src="http://blog.xg98.com/attachments/202405/07_140716_3bd2f752b0e645e7acbb79734c7608b4.png" alt="http://blog.xg98.com/attachments/202405/07_140716_3bd2f752b0e645e7acbb79734c7608b4.png" /></a></div><br /><br />使用的ip为127.0.0.1，而实际上的局域网ip如下：<br />]]></description>
      <wfw:commentRss><![CDATA[http://blog.xg98.com/feed.asp?q=comment&id=2966]]></wfw:commentRss>
    </item>
      
  </channel>
</rss>
