{"id":32491,"date":"2024-11-25T15:33:35","date_gmt":"2024-11-25T07:33:35","guid":{"rendered":"https:\/\/fwq.ai\/blog\/32491\/"},"modified":"2024-11-25T15:33:35","modified_gmt":"2024-11-25T07:33:35","slug":"%e5%b0%8f%e7%a8%8b%e5%ba%8f%e5%a6%82%e4%bd%95%e5%ae%9e%e7%8e%b0%e6%98%9f%e7%ba%a7%e8%af%84%e5%88%86%e6%95%88%e6%9e%9c%ef%bc%9f%ef%bc%88%e4%bb%a3%e7%a0%81%e7%a4%ba%e4%be%8b%ef%bc%89","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/32491\/","title":{"rendered":"\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09"},"content":{"rendered":"<p>\u672c\u7bc7\u6587\u7ae0\u7ed9\u5927\u5bb6\u5e26\u6765\u7684\u5185\u5bb9\u662f\u4ecb\u7ecd\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09\u3002\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\u4eec\u6709\u6240\u5e2e\u52a9\u3002<\/p>\n<p>\u6548\u679c\u56fe<\/p>\n<p style=\"text-align: center\"><img decoding=\"async\" src=\"https:\/\/img.php.cn\/\/upload\/image\/726\/982\/544\/1542095034716169.gif\" class=\"aligncenter\" title=\"\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09\u63d2\u56fe\" alt=\"\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09\u63d2\u56fe\" \/><\/p>\n<p>wxml<\/p>\n<p><\/p>\n<pre>&lt;view &gt;\n  \n    &lt;block wx:for=\"{{stars}}\"&gt;\n      &lt;image class=\"star-image\" style=\"left: {{item*100}}rpx\" src=\"{{key &gt; item ?(key-item == 0.5?halfSrc:selectedSrc) : normalSrc}}\"&gt;\n        &lt;view class=\"item\" style=\"left:0rpx\" data-key=\"{{item+0.5}}\" bindtap=\"selectLeft\"&gt;&lt;\/view&gt;\n        &lt;view class=\"item\" style=\"left:50rpx\" data-key=\"{{item+1}}\" bindtap=\"selectRight\"&gt;&lt;\/view&gt;\n      &lt;\/image&gt;\n    &lt;\/block&gt;\n  &lt;view style=\"margin-top:450rpx\"&gt;\n    &lt;button bindtap=\"startRating\"&gt;\u786e\u8ba4&lt;\/button&gt;\n  &lt;\/view&gt;&lt;\/view&gt;<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>wxss<\/p>\n<p><\/p>\n<pre>.star-image{\n  position: absolute;\n  top: 50rpx;\n  margin-left: 100rpx;\n  width: 100rpx;\n  height: 100rpx;\n  src: \"\/images\/icon\/star-no.png\";\n}.item{\n  position: absolute;\n  top: 50rpx;\n  width: 100rpx;\n  height: 100rpx;\n}<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>js<\/p>\n<p><\/p>\n<pre>\/\/index.js\nvar app = getApp()\nvar count = 0;\nPage({\n  data: {\n    stars: [0, 1, 2, 3, 4],\n    normalSrc: '\/images\/icon\/star-no.png',\n    selectedSrc: '\/images\/icon\/star-full.png',\n    halfSrc: '\/images\/icon\/star-half.png',\n    key: 0,\/\/\u8bc4\u5206\n    status:'',    \/\/0\u672a\u8bfe\u8bc4 1\u5df2\u8bfe\u8bc4  },  \/**\n     * \u751f\u547d\u5468\u671f\u51fd\u6570--\u76d1\u542c\u9875\u9762\u52a0\u8f7d     *\/\n  onLoad: function (options) {\n    console.log(options.status)  },  \/**\n   * \u70b9\u51fb\u5de6\u8fb9,\u534a\u9897\u661f   *\/\n  selectLeft: function (e) {\n    var key = e.currentTarget.dataset.key\n    if (this.data.key == 0.5 &amp;&amp; e.currentTarget.dataset.key == 0.5) {\n      \/\/\u53ea\u6709\u4e00\u9897\u661f\u7684\u65f6\u5019,\u518d\u6b21\u70b9\u51fb,\u53d8\u4e3a0\u9897\n      key = 0;    }\n    count = key\n    this.setData({\n      key: key    })\n\n  },  \/**\n   * \u70b9\u51fb\u53f3\u8fb9,\u6574\u9897\u661f   *\/\n  selectRight: function (e) {\n    var key = e.currentTarget.dataset.key\n    count = key\n    this.setData({\n      key: key    })\n  },\n  \/\/ \u786e\u5b9a\u6309\u94ae\n  startRating: function (e) {\n    wx.showModal({\n      title: '\u5206\u6570',\n      content: \"\" + count,\n      success: function (res) {\n        if (res.confirm) {\n          console.log('\u7528\u6237\u70b9\u51fb\u786e\u5b9a')        }\n      }\n    })\n  }\n})<\/pre>\n<p>  \u767b\u5f55\u540e\u590d\u5236   <\/p>\n<p>\u8f6c\u81ea\u5c0f\u7a0b\u5e8f\u7ec4\u4ef6\u4e4b\u661f\u7ea7\u8bc4\u5206<\/p>\n<p>&nbsp;<\/p>\n<p>\u4ee5\u4e0a\u5c31\u662f\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09\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\u4ecb\u7ecd\u5c0f\u7a0b\u5e8f\u5982\u4f55\u5b9e\u73b0\u661f\u7ea7\u8bc4\u5206\u6548\u679c\uff1f\uff08\u4ee3\u7801\u793a\u4f8b\uff09\u3002\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\u4eec\u6709\u6240\u5e2e\u52a9\u3002 \u6548\u679c\u56fe wxml &lt;view &gt; &lt;block wx:for=&#8221;{{stars}}&#8221;&gt; &lt;image class=&#8221;star-image&#8221; style=&#8221;left: {{item*100}}rpx&#8221; src=&#8221;{{key &gt; item ?(key-item == 0.5?halfSrc:selectedSrc) : normalSrc}}&#8221;&gt; &lt;view class=&#8221;item&#8221; style=&#8221;left:0rpx&#8221; data-key=&#8221;{{item+0.5}}&#8221; bindtap=&#8221;selectLeft&#8221;&gt;&lt;\/view&gt; &lt;view class=&#8221;item&#8221; style=&#8221;left:50rpx&#8221; data-key=&#8221;{{item+1}}&#8221; bindtap=&#8221;selectRight&#8221;&gt;&lt;\/view&gt; &lt;\/image&gt; &lt;\/block&gt; &lt;view style=&#8221;margin-top:450rpx&#8221;&gt; &lt;button bindtap=&#8221;startRating&#8221;&gt;\u786e\u8ba4&lt;\/button&gt; &lt;\/view&gt;&lt;\/view&gt; \u767b\u5f55\u540e\u590d\u5236 wxss .star-image{ position: absolute; top: 50rpx; margin-left: 100rpx; width: 100rpx; height: 100rpx; src: &#8220;\/images\/icon\/star-no.png&#8221;; }.item{ position: absolute; top: [&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-32491","post","type-post","status-publish","format-standard","hentry","category-19"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/32491","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=32491"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/32491\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=32491"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=32491"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=32491"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}