This commit is contained in:
yumoqing 2025-12-29 17:13:55 +08:00
parent 9c901bc689
commit 584d940bef
2 changed files with 2 additions and 2 deletions

View File

@ -575,7 +575,7 @@ bricks.App = class extends bricks.Layout {
this.zindex = 10000;
this.textList = [];
var i18n_opts = opts.i18n || {
url:'/i18n',
url:'/i18n_getmsgs',
i18n_path: 'i18n',
lang:this.lang
};

View File

@ -16,7 +16,7 @@ bricks.I18n = class {
i18n_path:
}
*/
this.url = opts.url || '/i18n'
this.url = opts.url || '/i18n_getmsgs'
this.i18n_path = opts.i18n_path;
this.lang = opts.lang;
this.method = opts.method || 'GET';