问题标签 [meteor-packages]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
meteor - 角流星(版本1 .3.9):无法解析模块“下划线”
Angular-meteor 昨天更新了,在那之前一切都运行得很好。今天我启动了“流星更新”,运行流星时突然看到错误。最值得注意的是这个:
我不知道这是从哪里来的,也不知道我能做些什么来解决这个问题。我可以/应该回滚到旧版本还是我做了一些乍一看并不明显的事情?
谢谢你的想法!
r - 使用 R CMD 检查删除包依赖的警告
我rpackage
用 Rstudio 构建我的,一切都很好。在使用check
按钮时rstudio
,它会给我一些警告,如下所示:
如何删除这些警告?
此外,这是我DESCRIPTION
文件的一部分:
meteor - 什么可能导致在包测试期间未定义 onUse 包和导出?
包.js:
重载器.js:
reloader-tests.js
LaunchScreen
由launch-screen
包导出。
当我运行测试 ( meteor test-packages ./ --driver-package practicalmeteor:mocha
) 时,我在浏览器控制台中得到了这个:
完整回购:
cordova - 使用 Iron 渲染模板:包中的路由器(Meteor 1.3)
我遇到了一个我仍然不明白的问题......在包内使用铁:路由器(使用流星1.3)
事实上,当我启动我的应用程序时,这会显示在 web.browser
找不到名为“home”或“home”的模板。你确定你定义了吗?
这是我目前写的 package.js 文件
和 routes.js 文件(这里没有什么像 html 文件中的模板那样复杂)
到目前为止,我已经测试了很多东西都没有工作,我想我错过了一些东西(也许很明显,但......仍然)。
有人能帮我吗 ?
整个目的是将我的项目分成 2 个包(一个用于 web.browser,另一个用于 web.cordova)。
javascript - 流星收集修正错误
我正在使用 Meteor 上的collection-revisions包来显示集合中所做的所有更改。
但是,我在恢复以前的更改时遇到了一些问题。我收到一个错误:Uncaught Error: Match error: Expected string, got undefined
。
我正在使用以下事件(实际上类似于文档的示例):
关于我在这里做错了什么的任何想法?
meteor - 如何在 Meteor 1.3 中仅使用集合名称获取集合?
在我的项目中,我正在使用需要集合名称来在集合中进行一些搜索的包。我刚刚迁移到 Meteor 1.3,现在这个包不起作用。
在代码包中使用类似:
现在集合不再在全球范围内。global[collection_name] = Collection
我可以在我的 中添加我的收藏lib/collections.js
,但我更愿意修复包以使其更灵活并且与 Meteor 1.3 兼容。
如果您只知道集合名称,是否有可能获得 Mongo Collection?
meteor - Meteor - 为什么帐户密码包标志在 Atmosphere 上不起作用?
在Atmospherejs.com上,该accounts-password
包被标记为不工作。这就是工具提示所说的:
已标记的软件包 此软件包已被社区标记为不工作。使用风险自负。标记是如何工作的?默认情况下隐藏标志。当标志数量超过每个版本下载量的 10% 时,会显示警告标志。每个版本都会重置标志计数。
我在 DuckDuckGo 上找不到有关此的更多信息。有谁知道它何时以及为什么被标记?
javascript - 调用对象值meteor js时如何有一个图标
这是我的代码:
我要使用的图标在类中指定,我使用了 meteor-material-icons 包。我想从值调用中删除“评论”,只显示图标和值。
感谢您的任何帮助。
javascript - How to Override Meteor Core Packages in a Project?
For a Meteor project I want to make changes to a Meteor Core library file.
Is this possible and if so, how?
So far I've tried just copying the files into my project directory hoping that the respective Objects are just overwritten from the originals but the problem herewith was that dependent functions or variables were only defined locally.
Then I tried to git clone
them into the project's packages
directory like you would do with a community package, but that didn't function either since the clone command failed (fatal: repository ... not found
) and also the package is not explicitly called in the .meteor/packages file.
Any idea?
mongodb - 不能使用其他 Meteor 包中的其他 Meteor 包
我正在编写自己的包,我需要依赖dburles:mongo-collection-instances
. 我知道集合实例包会修改Mongo.Collection
对象,但我看不到Mongo.Collection.getAll()
在我的自定义包中使用。
我的package.js
: