HarmonyOS ArkWeb的WebviewController类的getLastJavascriptProxyCallingFrameUrl接口与getUrl接口的差异是什么,getUrl是否为不安全函数

HarmonyOS
23h前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
aquaa
/**
 * Get the url of the last frame that calls the JavaScriptProxy.
 * This should be called on the UI thread.
 *
 * @returns { string } The url of the last frame that calls the JavaScriptProxy.
 * @throws { BusinessError } 17100001 - Init error.
 *                           The WebviewController must be associated with a Web component.
 * @syscap SystemCapability.Web.Webview.Core
 * @atomicservice
 * @since 12
 */
getLastJavascriptProxyCallingFrameUrl(): string;


/**
 * Gets the url of current Web page.
 * @returns { string } Return the url of the current page.
 * @throws { BusinessError } 17100001 - Init error.
 *                           The WebviewController must be associated with a Web component.
 * @syscap SystemCapability.Web.Webview.Core
 * @crossplatform
 * @atomicservice
 * @since 11
 */
getUrl(): string;

有以下区别,

  1. getUrl接口:getUrl接口用于获取当前Webview的URL。它主要用于获取当前Webview的加载状态和显示内容的URL。
  2. getLastJavascriptProxyCallingFrameUrl接口:getLastJavascriptProxyCallingFrameUrl接口用于获取调用JavaScriptProxy的URL。它主要用于获取最后一次调用注入的对象的frame的url。

getUrl是否为不安全函数getUrl接口本身并不是不安全的函数,这需要根据具体的使用场景来判断。

分享
微博
QQ
微信
回复
21h前
相关问题
判断是否实现了某接口
397浏览 • 1回复 待解决
是否有线程安全容器
1771浏览 • 1回复 待解决
HarmonyOS napi 接口线程安全咨询
327浏览 • 1回复 待解决
HarmonyOS UI组件是什么
332浏览 • 1回复 待解决
HarmonyOS是否有物理串口接口连接api
330浏览 • 1回复 待解决
希望提供字体是否下划线文本接口
768浏览 • 1回复 待解决
获取安全地理位置信息接口实现
379浏览 • 1回复 待解决
Flex布局w3c中flex是否差异
922浏览 • 1回复 待解决