获取 Facebook Sharer 的正确 URL 格式
我需要使用 navigateToURL(new URLRequest(request), "_blank");
格式化通过 AS3 传递给 Facebook Sharer 的 url。
传递的 url 有很多奇怪的字符。获得正确输出的最佳方法是什么?
这有效: http://www.facebook.com /sharer.php?u=www.somesiteurlthatdoesnotexist.com?title=这工作正常
I need to format a url passed to Facebook Sharer via AS3 using navigateToURL(new URLRequest(request), "_blank");
.
The url that is passed has a lot of strange characters. What is the best way to get the correct output?
This works:
http://www.facebook.com/sharer.php?u=www.somesiteurlthatdoesnotexist.com?title=This works fine
This does not work:
http://www.facebook.com/sharer.php?u=www.somesiteurlthatdoesnotexist.com?title=Jag behöver fixa en url som funkar med åäl och & tecken
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
escape("Jag behöver fixa en url som funkar med åäl och & tecken");
它应该使其“URL 编码”。
Try this:
escape("Jag behöver fixa en url som funkar med åäl och & tecken");
It should make it "URL encoded".