gpt4 book ai didi

javascript - 未捕获的类型错误 : Cannot read property 'call' of undefined' in backend. min.js:2

转载 作者:行者123 更新时间:2023-11-28 05:33:47 27 4
gpt4 key购买 nike

我在使用 Visual Composer 时遇到问题,我已经建立了一个网站,现在我想更改主页的图像,但是当我单击编辑按钮编辑图像时,我可以从媒体库中选择图像,但我无法将图像保存在 Visual Composer 中以将其显示在我的网站上。

当我单击图像的编辑按钮时,我的控制台会抛出此错误:

Uncaught TypeError: Cannot read property 'call' of undefined backend.min.js:2

backend.min.js 处的代码:2,未缩小:

initDependency: function () {
var callDependencies = {};
_.each(this.mapped_params, function (param) {
if (_.isObject(param) && _.isObject(param.dependency)) {
var rules = param.dependency;
if (_.isString(param.dependency.element)) {
var $masters, $slave;
$masters = $("[name=" + param.dependency.element + "].wpb_vc_param_value", this.$content), $slave = $("[name= " + param.param_name + "].wpb_vc_param_value", this.$content), _.each($masters, function (master) {
var $master, name;
$master = $(master), name = $master.attr("name"), _.isArray(this.dependent_elements[$master.attr("name")]) || (this.dependent_elements[$master.attr("name")] = []), this.dependent_elements[$master.attr("name")].push($slave), !$master.data("dependentSet") && $master.attr("data-dependent-set", "true") && $master.bind("keyup change", this.hookDependent), callDependencies[name] || (callDependencies[name] = $master)
}, this)
}
_.isString(rules.callback) && window[rules.callback].call(this)
}
}, this), this.doCheckTabs = !1, _.each(callDependencies, function (obj) {
this.hookDependent({currentTarget: obj})
}, this), this.doCheckTabs = !0, this.checkTabs(), callDependencies = null
},

研究了 window 变量后,我知道 window[rules.callback] 是未定义的,它不存在。规则索引在“console.log(window)”中不可见。

我正在使用 WordPress 4.6.1 和 Visual Composer 4.12.1 以及 WooPress 主题,效果非常好。

请问谁能帮帮我?

最佳答案

从 backend.min.js 中我删除了这部分代码:

_.isString(rules.callback)&&window[rules.callback].call(this)

您可以搜索这部分代码并将其删除。这是唯一的解决方法。

关于javascript - 未捕获的类型错误 : Cannot read property 'call' of undefined' in backend. min.js:2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39507201/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com