我是 Meteor 和 AngularJs 的新手。我正在尝试遵循https://github.com/lvbreda/Meteor_angularjs上的示例应用程序,但到目前为止我还无法让它工作。
我在这段代码中收到错误“未定义应用程序”:
app.controller('MeteorCtrl', ['$scope', '$meteor', function ($scope, $meteor) {
Uncaught ReferenceError: app is not defined
$scope.todos = $meteor("todos").find({});
$meteor("todos").insert({
name: "Do something",
done: false
});
我试图将上面的内容重写为:
var MeteorCtrl = function ($scope, $meteor) {
$scope.todos = $meteor("todos").find({});
$meteor("todos").insert({
name: "Do something",
done: false
})
};
仍然抛出错误'错误:未知提供者:$meteorProvider <- $meteor'
在https://github.com/bevanhunt/meteor-angular-leaderboard上的meter+angularjs 的唯一其他示例似乎已过时。
有人可以使用https://github.com/lvbreda/Meteor_angularjs上的包发布一个简单但完全有效的可下载的流星 + angularjs 示例吗?