检查用户输入是否是 XUL 中的有效 URI

发布于 2024-07-04 02:47:00 字数 254 浏览 9 评论 0原文

是否有内置函数/方法可以检查给定字符串是否是有效的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

冬天的雪花 2024-07-11 02:47:00

nsIIOService.newURI(...)< /a> 方法就是您正在寻找的方法。 如果 URI 字符串无效,它会抛出 NS_ERROR_MALFORMED_URI

例子:

try {
  var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
                         .getService(Components.interfaces.nsIIOService);
  var uriObj = ioServ.newURI(uriString, uriCharset, baseURI);
} catch (e) {

  // catch the error here

}

The nsIIOService.newURI(...) method is what you're looking for. It throws NS_ERROR_MALFORMED_URI if the URI string is invalid.

Example:

try {
  var ioServ = Components.classes["@mozilla.org/network/io-service;1"]
                         .getService(Components.interfaces.nsIIOService);
  var uriObj = ioServ.newURI(uriString, uriCharset, baseURI);
} catch (e) {

  // catch the error here

}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文