每当我尝试调用“Accounts.createUser”(在客户端上)时,我得到“EXCEPTION:TypeError:Accounts.createUser不是函数”。
符合文档应该可以使用“默认情况下,accounts-password提供的Accounts.createUser功能允许您创建一个包含用户名,电子邮件或两者的帐户。”https://guide.meteor.com/accounts.html#requiring-username-email
我添加了
import tkinter as tk
import random
class MainWindow(object):
def __init__(self):
self.root = tk.Tk()
self.cv = tk.Canvas(self.root, height = 400, width = 400)
self.cv.pack()
draw_stuff = DrawStuff(self)
self.button1 = tk.Button(text="draw line", command=draw_stuff.draw_line)
self.Solve_button_window = self.cv.create_window(5, 5, anchor=tk.NW, window=self.button1)
self.root.mainloop()
class DrawStuff(object):
def __init__(self, mainwin):
self.mainwin = mainwin
self.cv = mainwin.cv
def draw_line(self):
self.point1 = (random.randrange(10, 400), random.randrange(10, 400))
self.point2 = (random.randrange(10, 400), random.randrange(10, 400))
self.cv.create_line(self.point1, self.point2)
MainWindow()
我的代码:
meteor add accounts-base
meteor add accounts-password
编辑:作为一个信息,我希望它有客户端。服务器端对我来说很好。