0

你如何为 _("") 混合 underscorejs 和 gettext?

你认为给 gettext 另一个函数名或重命名 underscorejs 更好吗?

4

1 回答 1

2

可以使用Underscore 的noConflict方法,例如:

// gettext is already loaded here,
// so _ variable points to Gettext instance

var underscore = _.noConflict();

underscore现在您可以从变量访问下划线的方法和从 .gettext 访问_

UPD:对不起,误会了。就个人而言,我认为应该_为下划线保留并gt用于 Gettext。其背后的原因是使用下划线并将其视_​​为 JS 开发人员似乎更常见。

于 2012-07-14T06:53:46.237 回答