ppypp伦理天堂,91手机在线视频,免费在线观看黄色毛片,夜夜穞天天穞狠狠穞AV美女按摩

聯系官方銷售客服

1835022288

028-61286886

投訴 已解決 小程序中問答模塊在回帖時提示“評論內容不能為空” 3 0
插件名稱 問答插件 V1.9
插件作者 迅睿官方團隊
最近更新 2024-12-26 20:01:03

在測試小程序問答回帖時,總出現“評論內容不能為空”求助!

我的API接口是:

// 提交評論
 postCommentUrl: function(id) {
 return CMS_API + '&s=wenda&m=post&c=comment&api_auth_code=' + wx.getStorageSync('member_auth') + '&api_auth_uid=' + wx.getStorageSync('member_uid') + '&id=' + id;
 }, 

我的前端代碼是:

<div class="comment-input">
        <input
          v-model="newComment"
          placeholder="請輸入評論內容"
          class="input-box"
        />
        <button @tap="submitComment" class="submit-btn">提交</button>
      </div>
    </div>

JS部分:

// 提交評論
    submitComment() {
      var self = this;
      if (self.newComment.trim() === "") {
        wx.showToast({
          title: "評論內容不能為空",
          icon: "none",
        });
        return;
      }

解決方案