我正在关注此网站上的教程:
http://code.tutsplus.com/tutorials/working-with-data-in-sailsjs--net-31525
我在最后一部分停留,利用网络套接字。
最初我输入了代码但得到了javascript错误:
Uncaught TypeError: this.socket.request is not a function
所以我决定复制并粘贴教程的代码,但它也给出了同样的错误。
这是代码块:
var SailsCollection = Backbone.Collection.extend({
sailsCollection: "",
socket: null,
sync: function(method, model, options){
var where = {};
if (options.where) {
where = {
where: options.where
}
}
if(typeof this.sailsCollection === "string" && this.sailsCollection !== "") {
this.socket = io.connect();
this.socket.on("connect", _.bind(function(){
this.socket.request("/" + this.sailsCollection, where, _.bind(function(users){
this.set(users);
}, this));
this.socket.on("message", _.bind(function(msg){
var m = msg.uri.split("/").pop();
if (m === "create") {
this.add(msg.data);
} else if (m === "update") {
this.get(msg.data.id).set(msg.data);
} else if (m === "destroy") {
this.remove(this.get(msg.data.id));
}
}, this));
}, this));
} else {
console.log("Error: Cannot retrieve models because property 'sailsCollection' not set on the collection");
}
}
});
我相信这个教程可能已经过时,但我仍然希望我可以解决这个问题,特别是这样做。
任何人都知道在这个BackboneJS代码中使用Sailsjs套接字的正确方法吗? (我知道我在这里寻找大海捞针)。
与freenode IRC上的#Sailjs人员的一些初步讨论揭示了Grunt任务没有运行,所以Socket.io没有被Sails.js注入?
好像好像在这里已经提出了一个重复的问题:
Sails is not injecting the files within the assets folder
投票结束我自己的问题,帮我投票赞成:)
答案 0 :(得分:1)
解决方案是更改项目根目录中的.sailsrc
,行:
{
"generators": {
"modules": {}
},
"hooks": {
"grunt": true
}
}
到
{
"generators": {
"modules": {}
},
"hooks": {
}
}