检查用户输入是否是 XUL 中的有效 URI
是否有内置函数/方法可以检查给定字符串是否是有效的 URI Mozilla XUL 工具包? 我已经寻找过,但没有找到,但由于这是我第一次使用 XUL 及其文档,因此可能我只是忽略了它。 因此,我只是在开始编写自己的 IsValidURI
函数之前先确定一下。
Is there a built-in function/method that can check if a given string is a valid URI or not in the Mozilla XUL toolkit? I have looked for one but found none, but since this is my first time using XUL and its documentation it could be that I just overlooked it. So I'm just making sure before I start writing my own IsValidURI
function.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
nsIIOService.newURI(...)< /a> 方法就是您正在寻找的方法。 如果 URI 字符串无效,它会抛出 NS_ERROR_MALFORMED_URI。
例子:
The nsIIOService.newURI(...) method is what you're looking for. It throws NS_ERROR_MALFORMED_URI if the URI string is invalid.
Example: