查看realtime playground example。
对于自定义对象,有this call:
custom.setInitializer(Movie, Movie.prototype.initialize);
和Movie.prototype.initialize
处理程序takes two parameters
name, director
这些参数在何处或如何传递给初始化函数?
答案 0 :(得分:0)
create
函数是指定initialize
函数的参数的函数。见定义here
model.create
来电https://github.com/googledrive/realtime-playground/blob/master/js/rtpg.custom.js#L79
name, director
个参数
感谢@basilikum的提示。