有没有大神知道这个前端报错怎么解决?
发布于 4 年前 作者 minren 12845 次浏览 来自 官方Issues

2 回复

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

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")
});
回到顶部