使用 nodeJS 在 Heroku 上动态创建子域?

Dynamically creating subdomains on Heroku with nodeJS?

是否可以将子域名动态添加到指向您的 heroku 应用程序的自定义域?

例如,您正在创建一个允许用户创建自己的页面的应用程序。假设 www.example.com 指向您的 heroku 应用程序,名为 John 的用户创建了一个页面,您的应用程序创建了包含 johns 内容的 john.example.com

对于node,能否通过express中的路由实现?

是的。您确实可以使用 Heroku Platform API. Here's a link to the exact bit you need: https://devcenter.heroku.com/articles/platform-api-reference#domain

将域动态添加到您的 Heroku 应用程序

然后您可以通过节点请求对象读取域数据(req.url,我相信)。