Node.js - 连接到 MySQL 数据库服务器
我有服务器A,它是node.js服务器,服务器B是apache php服务器。我想知道如何使用服务器 A 从服务器 B 上的数据库获取数据。是否有模块或中间件可以做到这一点?
I got server A, which is a node.js server, and server B which is apache php server. I want to know how I can use server A to get data from database on server B. Is there a module or middleware which can do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以远程连接< /a> 通过设置客户端
hostnode-mysql
模块连接到服务器 B >、
port
、user
和password
选项(参见node-mysql的教程和API)。You can connect remotely to server B with node-mysql module by setting client
host
,port
,user
andpassword
options (see tutorial and API of node-mysql).