{"id":32474,"date":"2024-11-25T17:03:38","date_gmt":"2024-11-25T09:03:38","guid":{"rendered":"https:\/\/fwq.ai\/blog\/32474\/"},"modified":"2024-11-25T17:03:38","modified_gmt":"2024-11-25T09:03:38","slug":"%e5%b0%8f%e7%a8%8b%e5%ba%8f%e5%ae%9e%e4%be%8b%ef%bc%9a%e5%a6%82%e4%bd%95%e8%87%aa%e5%ae%9a%e4%b9%89%e4%b8%8b%e6%8b%89%e5%88%b7%e6%96%b0","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/32474\/","title":{"rendered":"\u5c0f\u7a0b\u5e8f\u5b9e\u4f8b\uff1a\u5982\u4f55\u81ea\u5b9a\u4e49\u4e0b\u62c9\u5237\u65b0"},"content":{"rendered":"<p>\u672c\u7bc7\u6587\u7ae0\u7ed9\u5927\u5bb6\u5e26\u6765\u7684\u5185\u5bb9\u662f\u5173\u4e8e\u5c0f\u7a0b\u5e8f\u5b9e\u4f8b\uff1a\u5982\u4f55\u81ea\u5b9a\u4e49\u4e0b\u62c9\u5237\u65b0\uff0c\u6709\u4e00\u5b9a\u7684\u53c2\u8003\u4ef7\u503c\uff0c\u6709\u9700\u8981\u7684\u670b\u53cb\u53ef\u4ee5\u53c2\u8003\u4e00\u4e0b\uff0c\u5e0c\u671b\u5bf9\u4f60\u6709\u6240\u5e2e\u52a9\u3002<\/p>\n<\/p>\n<p>\u81ea\u5b9a\u4e49\u7ec4\u4ef6\uff1a<\/p>\n<p>js:<\/p>\n<pre>\/\/&nbsp;components\/test\/test.js\nComponent({\n\/**\n*&nbsp;\u7ec4\u4ef6\u7684\u5c5e\u6027\u5217\u8868\n*\/\nproperties:&nbsp;{\n&nbsp;\n},\n&nbsp;\n\/**\n*&nbsp;\u7ec4\u4ef6\u7684\u521d\u59cb\u6570\u636e\n*\/\ndata:&nbsp;{\nscrollHeight:&nbsp;0,\nstartY:&nbsp;0,\ntips:&nbsp;'\u4e0b\u62c9\u5237\u65b0',\nisRefreshing:&nbsp;false\n},\n&nbsp;\n\/**\n*&nbsp;\u7ec4\u4ef6\u7684\u65b9\u6cd5\u5217\u8868\n*\/\nmethods:&nbsp;{\nend:&nbsp;function(e)&nbsp;{\nif&nbsp;(this.data.isRefreshing)&nbsp;{\nreturn\n}\nif&nbsp;(this.data.scrollHeight&nbsp;&amp;gt;=&nbsp;50)&nbsp;{\nthis.setData({\nscrollHeight:&nbsp;50,\ntips:&nbsp;'\u6b63\u5728\u5237\u65b0',\nisRefreshing:&nbsp;true\n})\nthis.triggerEvent('onRefresh')\n}&nbsp;else&nbsp;{\nthis.setData({\nscrollHeight:&nbsp;0,\ntips:&nbsp;'\u4e0b\u62c9\u5237\u65b0'\n})\n}\n},\nmove:&nbsp;function(e)&nbsp;{\nif&nbsp;(this.data.isRefreshing)&nbsp;{\nreturn\n}\n&nbsp;\nvar&nbsp;that&nbsp;=&nbsp;this;\nvar&nbsp;moveY&nbsp;=&nbsp;e.touches[0].pageY;\nvar&nbsp;dY&nbsp;=&nbsp;moveY&nbsp;-&nbsp;that.data.startY;\nconsole.log(dY);\nif&nbsp;(dY&nbsp;&amp;gt;=&nbsp;50&nbsp;&amp;amp;&amp;amp;&nbsp;dY&nbsp;&nbsp;80)&nbsp;{\nthis.setData({\ntips:&nbsp;'\u677e\u5f00\u52a0\u8f7d',\nscrollHeight:&nbsp;80\n})\n}&nbsp;else&nbsp;{\nthis.setData({\ntips:&nbsp;'\u4e0b\u62c9\u5237\u65b0',\nscrollHeight:&nbsp;dY\n})\n}\n&nbsp;\n},\n&nbsp;\nstart:&nbsp;function(e)&nbsp;{\nthis.data.startY&nbsp;=&nbsp;e.touches[0].pageY;\n},\n&nbsp;\nstopRefresh:&nbsp;function()&nbsp;{\nthis.setData({\nisRefreshing:&nbsp;false,\nscrollHeight:&nbsp;-50\n})\n},\n}\n})<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>wxml:<\/p>\n<pre>&lt;!--components\/test\/test.wxml--&gt;\n&lt;view&gt;&lt;view&gt;&lt;view&gt;&lt;\/view&gt;&lt;view&gt;{{tips}}&lt;\/view&gt;&lt;\/view&gt;&lt;\/view&gt;<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>wxss:\u5176\u4e2d\u5f15\u7528\u4e86weui \u8fd9\u4e2a\u7528\u4e0d\u7528\u90fd\u65e0\u6240\u8c13\u7684\u5f88\u7b80\u5355\u7684<\/p>\n<pre>@import&nbsp;'\/pages\/common\/weui.wxss';\npage{\nheight:&nbsp;100%;\n}\n&nbsp;\n.loading-container{\nheight:&nbsp;100%;\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>pages\u91ccwxml\uff1a<\/p>\n<pre>&lt;loadmore&gt;&lt;\/loadmore&gt;<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>js:\/\/\u5237\u65b0\u65b9\u6cd5\u56de\u8c03<\/p>\n<pre>onRefresh:&nbsp;function()&nbsp;{\nvar&nbsp;that&nbsp;=&nbsp;this;\nsetTimeout(function(){\nthat.selectComponent(\"#loadmore\").stopRefresh();\n},3000)\n},\njson:\n{\n\"enablePullDownRefresh\":&nbsp;false,\n\"usingComponents\":{\n\"loadmore\":\"..\/..\/components\/test\/test\"\n}\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5c0f\u7a0b\u5e8f\u5b9e\u4f8b\uff1a\u5982\u4f55\u81ea\u5b9a\u4e49\u4e0b\u62c9\u5237\u65b0\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u672c\u7bc7\u6587\u7ae0\u7ed9\u5927\u5bb6\u5e26\u6765\u7684\u5185\u5bb9\u662f\u5173\u4e8e\u5c0f\u7a0b\u5e8f\u5b9e\u4f8b\uff1a\u5982\u4f55\u81ea\u5b9a\u4e49\u4e0b\u62c9\u5237\u65b0\uff0c\u6709\u4e00\u5b9a\u7684\u53c2\u8003\u4ef7\u503c\uff0c\u6709\u9700\u8981\u7684\u670b\u53cb\u53ef\u4ee5\u53c2\u8003\u4e00\u4e0b\uff0c\u5e0c\u671b\u5bf9\u4f60\u6709\u6240\u5e2e\u52a9\u3002 \u81ea\u5b9a\u4e49\u7ec4\u4ef6\uff1a js: \/\/&nbsp;components\/test\/test.js Component({ \/** *&nbsp;\u7ec4\u4ef6\u7684\u5c5e\u6027\u5217\u8868 *\/ properties:&nbsp;{ &nbsp; }, &nbsp; \/** *&nbsp;\u7ec4\u4ef6\u7684\u521d\u59cb\u6570\u636e *\/ data:&nbsp;{ scrollHeight:&nbsp;0, startY:&nbsp;0, tips:&nbsp;&#8216;\u4e0b\u62c9\u5237\u65b0&#8217;, isRefreshing:&nbsp;false }, &nbsp; \/** *&nbsp;\u7ec4\u4ef6\u7684\u65b9\u6cd5\u5217\u8868 *\/ methods:&nbsp;{ end:&nbsp;function(e)&nbsp;{ if&nbsp;(this.data.isRefreshing)&nbsp;{ return } if&nbsp;(this.data.scrollHeight&nbsp;&amp;gt;=&nbsp;50)&nbsp;{ this.setData({ scrollHeight:&nbsp;50, tips:&nbsp;&#8216;\u6b63\u5728\u5237\u65b0&#8217;, isRefreshing:&nbsp;true }) this.triggerEvent(&#8216;onRefresh&#8217;) }&nbsp;else&nbsp;{ this.setData({ scrollHeight:&nbsp;0, tips:&nbsp;&#8216;\u4e0b\u62c9\u5237\u65b0&#8217; }) } }, move:&nbsp;function(e)&nbsp;{ if&nbsp;(this.data.isRefreshing)&nbsp;{ return } &nbsp; var&nbsp;that&nbsp;=&nbsp;this; var&nbsp;moveY&nbsp;=&nbsp;e.touches[0].pageY; var&nbsp;dY&nbsp;=&nbsp;moveY&nbsp;&#8211;&nbsp;that.data.startY; console.log(dY); if&nbsp;(dY&nbsp;&amp;gt;=&nbsp;50&nbsp;&amp;amp;&amp;amp;&nbsp;dY&nbsp;&nbsp;80)&nbsp;{ this.setData({ [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[19],"tags":[],"class_list":["post-32474","post","type-post","status-publish","format-standard","hentry","category-19"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/32474","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=32474"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/32474\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=32474"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=32474"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=32474"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}