js获取表单元素 修改页面内容

<input placeholder="请输入" bindinput=“groupName" />
  // 获取组名
  groupName: function(e) {
    this.setData({
      groupName: e.detail.value,
    });
    console.log("组名" + this.data.groupName);
  },

  // 设置组名
  setGroupName(e) {
    var that = this;
    // 发起网络请求
    wx.request({
      url: that.data.editGroupUrl,
      method: "get",
      header: {
        "content-type": ""
      },
      data: {
        name: that.data.groupName
      },
      success: function(res) {
        if (res.status == 1) {
          // 弹窗成功
          wx.showToast({
            title: '修改成功!',
            icon: 'success', 
          })
          // 刷新页面
          that.onLoad();
        }
        else{
          // 弹窗失败
          wx.showToast({
            title: '修改失败!', 
            icon: 'none', 
          })
        }
      },
      fail: function(error) {
        console.log(error);
      }
    })

你可能感兴趣的:(js,小程序)