gpt4 book ai didi

javascript - 在 Webpack 2 中,如何将日期(或任何其他变量)添加到横幅输出中?

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

在 Webpack 2 中,有一个有用的横幅插件允许将文本 block 插入到您的条目中。但是,如何在横幅中输入动态变量?

我试过了

new webpack.BannerPlugin({
banner: `
/*
* Copyright © ACME Software, Inc - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Chris <cjke@acme.com.au>, ${new Date(Date.now()).toLocaleDateString}
*/
`,
entryOnly: true,
raw: true,
}),

但是输出看起来像:

/* 
* Copyright © ACME Software, Inc - All Rights Reserved
* Unauthorized copying of this file, via any medium is strictly prohibited
* Proprietary and confidential
* Written by Chris <cjke@acme.com.au>, function toLocaleDateString() { [native code] }
*/

最佳答案

您没有调用 toLocaleDateString 以便表达式计算为函数而不是通过调用它获得的结果。

调用该方法将为您提供正确的输出:

${ new Date(Date.now()).toLocaleDateString() }
//Invoke it by adding parenthesis here ---^

关于javascript - 在 Webpack 2 中,如何将日期(或任何其他变量)添加到横幅输出中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45517367/

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