如何在已编译的Meteor应用程序中获取实际URL?

时间:2016-06-18 00:28:27

标签: javascript cordova meteor

我正在使用return document.URL的帮助者,但是giving a localhost url,这可能是由于Cordova。

我希望看到像https://my.domain.com/pa/th

这样的内容

2 个答案:

答案 0 :(得分:1)

您可能需要Meteor.absoluteUrl()docs

答案 1 :(得分:0)

让Tdm的答案完整的更多细节

Meteor.absoluteUrl(_.trimStart(location.pathname, '/'))

这将返回包含正确域和当前路径的完整URL。

<强>参考