如何将 x-editable 插件与 meanjs yeoman 生成的代码一起使用?

How to use x-editable plugin with meanjs yeoman generated code?

我喜欢 x-editable 插件并且之前曾用于 angular 独立应用程序。目前我已经使用 Yeoman meanjs 生成器生成了我的项目,但我找不到与配置 editableOptions 相同的选项,而我在 angular 应用程序中可以这样做。有谁知道我可以在哪里配置这些设置?是否在快速配置中使用 app.use?如果是,我如何在函数中包含可编辑选项。

app.run(function(editableOptions) {
  editableOptions.theme = 'bs3'; // bootstrap3 theme. Can be also 'bs2', 'default'
});

您可以尝试在文件 moduleName.client.config.js

中执行此操作

并做

 moduleName.run(function(editableOptions) {
  editableOptions.theme = 'bs3';
});

不要忘记在 applicationModuleVendorDependencies 中连接模块