我正在寻找使用meteorjs应用程序构建api,因此我需要在没有任何HTML的情况下呈现juste文本。 meteorjs有可能吗?
答案 0 :(得分:0)
所以我看了Iron路由器,很容易呈现服务器端响应 只需将此代码放在服务器中
即可
Router.route("path/view", function() {
this.response.end("ok");
}, {
where: "server"
});

要在浏览器上进行测试,只需http://localhost:3000/path/view即可呈现"确定"
上找到了这个