From d6e9b1e627a0db217d0a1070616ced6d8688e2b9 Mon Sep 17 00:00:00 2001 From: Gloria Date: Mon, 6 Mar 2023 19:06:03 +0800 Subject: [PATCH] fixed 7309979 from https://gitee.com/wusongqing/docs/pulls/15531 Update docs against 14450 Signed-off-by: wusongqing --- en/application-dev/reference/apis/js-apis-uri.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/application-dev/reference/apis/js-apis-uri.md b/en/application-dev/reference/apis/js-apis-uri.md index b3fb6f7a3e..a8aed60f4a 100644 --- a/en/application-dev/reference/apis/js-apis-uri.md +++ b/en/application-dev/reference/apis/js-apis-uri.md @@ -226,9 +226,9 @@ Checks whether this URI is an absolute URI (whether the scheme component is defi ```js const uriInstance = new uri.URI('https://username:password@www.qwer.com:8080?query=pppppp'); -console.log(uriInstance.checkIsAbsolute()); // true +console.log(`${uriInstance.checkIsAbsolute()}`); // true const uriInstance1 = new uri.URI('xxx.com/suppliers.htm'); -console.log(uriInstance1.checkIsAbsolute()); // false +console.log(`${uriInstance1.checkIsAbsolute()}`); // false ``` -- GitLab