收藏
回答

有没有大神知道这个前端报错怎么解决?

回答关注问题邀请回答
收藏

2 个回答

  • brave
    brave
    2020-05-21

    传的值为undefined了,必须是String类型

    2020-05-21
    有用 2
    回复 7
    • L++
      L++
      2020-05-21
      那怎么改呢,能不能截个图
      2020-05-21
      回复
    • brave
      brave
      2020-05-21回复L++
      wx.setNavigationBarColor
      wx.setNavigationBarTitle
      你调用的这两个API传的backgroundColor和title为undefined了
      2020-05-21
      1
      回复
    • L++
      L++
      2020-05-21回复brave
      这个调用我再那个文件修改啊
      2020-05-21
      回复
    • brave
      brave
      2020-05-21回复L++
      你在哪里调用的都不知道吗。。。。。
      2020-05-21
      回复
    • L++
      L++
      2020-05-21
      不知道耶
      2020-05-21
      回复
    查看更多(2)
  • L++
    L++
    2020-05-21
    App({
        onLaunch: function() {
            wx.hideTabBar();
        },
        onShow: function() {},
        onHide: function() {},
        onError: function(t) {},
        init_app: function() {
            var e = this;
            return wx.getSystemInfo({
                success: function(t) {
                    -1 < (e.globalData.sysData = t).model.indexOf("iPhone X") && (e.globalData.isIphoneX = !0);
                }
            }), new Promise(function(a, t) {
                wx.getStorageSync("uid") ? e.http.get("index.get_common_set", {
                    showLoading: !1
                }, 60).then(function(t) {
                    e.globalData.basic_set = t.data.basic_set, e.globalData.tag_set = t.data.tag_set, 
                    a();
                }) : wx.login({
                    success: function(t) {
                        e.http.get("index.get_openid", {
                            code: t.code
                        }).then(function(t) {
                            t.data.uid && t.data.openid ? (wx.setStorageSync("uid", t.data.uid), wx.setStorageSync("openid", t.data.openid), 
                            e.http.get("index.get_common_set", {
                                showLoading: !1
                            }, 500).then(function(t) {
                                e.globalData.basic_set = t.data.basic_set, e.globalData.tag_set = t.data.tag_set, 
                                a();
                            })) : wx.showModal({
                                title: "错误",
                                content: "配置异常,请联系管理员检查后台配置",
                                success: function(t) {
                                    wx.switchTab({
                                        url: "/weike_zf/pages/index/index"
                                    });
                                }
                            });
                        });
                    }
                });
            });
        },
        set_navigation_bar: function() {
            wx.setNavigationBarColor({
                frontColor: "#ffffff",
                backgroundColor: this.globalData.basic_set.theme_color
            });
        },
        globalData: {
            sysData: {},
            isIphoneX: !1,
            user_info: {},
            tarbars: [],
            basic_set: {},
            wx_xcx_set: {}
        },
        siteInfo: require("siteinfo.js"),
        http: require("./weike_zf/util/request.js")
    });
    
    2020-05-21
    有用
    回复
登录 后发表内容
问题标签