将 Meteor 的客户端绑定到单独的 DDP 服务器
Bind Meteor's client to separate DDP server
我想将内置于 Meteor 中的前端应用程序绑定到通过 DDP 连接公开其 API 的独立服务器。我有此服务器的 DDP 连接 URL,但我如何从我的前端应用程序实际连接到它?
在 Meteor 中有没有办法将前端应用程序应该使用的默认 DDP 连接设置为自定义值 (URL)?
您可以使用
DDP.connect(url)
文档在这里:https://docs.meteor.com/api/connections.html
您需要自己管理连接(即失败时重新连接)
尝试使用 custom ddp connection package.
Run meteor add xneon:ddp-backend
Set the environment variable BACKEND_URL
to the URL of the remote server
我想将内置于 Meteor 中的前端应用程序绑定到通过 DDP 连接公开其 API 的独立服务器。我有此服务器的 DDP 连接 URL,但我如何从我的前端应用程序实际连接到它?
在 Meteor 中有没有办法将前端应用程序应该使用的默认 DDP 连接设置为自定义值 (URL)?
您可以使用
DDP.connect(url)
文档在这里:https://docs.meteor.com/api/connections.html
您需要自己管理连接(即失败时重新连接)
尝试使用 custom ddp connection package.
Run
meteor add xneon:ddp-backend
Set the environment variable
BACKEND_URL
to the URL of the remote server