你如何为 _("") 混合 underscorejs 和 gettext?
你认为给 gettext 另一个函数名或重命名 underscorejs 更好吗?
你如何为 _("") 混合 underscorejs 和 gettext?
你认为给 gettext 另一个函数名或重命名 underscorejs 更好吗?
可以使用Underscore 的noConflict
方法,例如:
// gettext is already loaded here,
// so _ variable points to Gettext instance
var underscore = _.noConflict();
underscore
现在您可以从变量访问下划线的方法和从 .gettext 访问_
。
UPD:对不起,误会了。就个人而言,我认为应该_
为下划线保留并gt
用于 Gettext。其背后的原因是使用下划线并将其视_
为 JS 开发人员似乎更常见。