gpt4 book ai didi

javascript - i18next 模块的 Google Apps 脚本错误

转载 作者:数据小太阳 更新时间:2023-10-29 05:14:19 26 4
gpt4 key购买 nike

我正在用 ES6 编写我的项目,目前面临 i18next 模块的问题。 https://www.i18next.com/

在我的本地系统上,当我导入 i18next import i18next from 'i18next'; 并在我的源文件中使用它时,一切正常。然而,在我运行 npm run gulp(它将所有源文件合并到一个 javascript 文件 - main.js)并尝试将该代码上传到 Google Apps 脚本(使用 gapps upload ),它因 错误请求而失败。上传失败。 错误。

在网上查了一下发现这个错误是语法有问题,所以我尝试将main.js中的代码复制粘贴到google apps脚本中,结果显示如下语法错误:

Invalid property ID. (Line 32, file "main")

第 32 行:

function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

即使我只导入 i18next 模块而实际上没有对其进行任何操作,也会发生此错误。

这是我的gulpfile:

import gulp from 'gulp';
import browserify from 'browserify';
import source from 'vinyl-source-stream';
import mocha from 'gulp-mocha';

const compileFile = 'main.js';

gulp.task('dest', () => {
browserify({
entries: ['src/'+compileFile]
})
.transform('babelify')
.plugin('gasify')
.bundle()
.pipe(source(compileFile))
.pipe(gulp.dest('dist'));
});

gulp.task('test', () => {
gulp.src('test/**/*.js', {read: false})
.pipe(mocha({
reporter: 'spec',
compilers: 'js:babel-core/register'
}));
});

gulp.task('default', ['test', 'dest'], () => {});

gulp.task('watch', () => {
gulp.watch('src/**/*.js', ['dest']);
});

还尝试使用 i18n 模块,但不起作用。

我想为我的翻译使用获取文本模块,不需要货币/日期格式自定义。只是翻译文件中的文本 getter 。不能使用 json po 或任何其他扩展(我需要将所有文件作为一个文件上传到 GAS,认为他们不允许除 .js 以外的任何文件)

我的模板文件是这样的en.js:

const res = {
template: {
"signIn":"Hello, <@#1>! Signed you in (#2)",
...
},
command: {
"signIn": "hi",
...
}
};
export default res;

最佳答案

刚刚找到了可行的解决方案!

在尝试所有国际化库并遇到各种与气体和非气体相关的错误后,node-polyglot模块对我有用!

仍然不知道 i18next 不工作的原因

关于javascript - i18next 模块的 Google Apps 脚本错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44559036/

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