gpt4 book ai didi

angularjs - Meteor+AngularJs 示例

转载 作者:行者123 更新时间:2023-12-04 00:35:45 25 4
gpt4 key购买 nike

我是 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 上的包发布一个简单但功能齐全的可下载的meteor+angularjs 示例吗? ?

最佳答案

我显然有偏见,但我们的团队编写并维护了这个库 - angular-meteor我们还发布了将两者结合起来的教程 - angular-meteor tutorial

关于angularjs - Meteor+AngularJs 示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15727521/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com