gpt4 book ai didi

javascript - 对象属性未定义

转载 作者:行者123 更新时间:2023-11-28 00:11:26 24 4
gpt4 key购买 nike

我不知道我是否在这里遗漏了一些东西,但由于某种原因,我创建的配置对象在使用时总是未定义:

gulpfile.config.js

var config = {
src_path: "Client/"
};

gulpfile.js

var config = require("./gulpfile.config.js");

gulp.task("test", function() {
util.log(config.src_path); // results in 'undefined'
});

对象是否必须在 gulp 任务的范围内初始化,或者对象声明有问题吗?

最佳答案

module.exports 添加到 gulpfile.config.js 中,如下所示

# gulpfile.config.js
var config = {
src_path: "Client/"
};

module.exports = config

module.exports是作为 require 调用结果返回的对象。

关于javascript - 对象属性未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30844149/

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