수색…


소개

때때로 클라이언트는 모바일 앱에서 웹 앱을 열면됩니다. InAppBrowser를 앱처럼 보이게하는 대신 사용자가 앱 아이콘을 탭하자마자 모바일에서 웹 사이트 / 웹 애플리케이션을 여는 방식으로 InAppBrowser를 사용할 수 있습니다. 첫 번째 앱보기를 열지 않고 InAppBrowser를 직접 열 수 있습니다.

이 응용 프로그램의 라이브 예제는이 응용 프로그램입니다 :

이 앱에서는 사용자가 앱의 첫 페이지를로드하는 대신 앱 아이콘을 탭하면 InAppBrowser를 직접 여는 것입니다. 그래서 그것은 같은 웹 사이트 / webapp의 응용 프로그램을보고있는 것처럼 보입니다.

InAppBrowser를 사용하는 코드 예제

  platform.ready().then(() => {
      // Okay, so the platform is ready and our plugins are available.
      // Here you can do any higher level native things you might need.
      var url= "https://blog.knoldus.com/";
      var browserRef = window.cordova.InAppBrowser.open(url, "_self", "location=no", "toolbar=no");
      browserRef.addEventListener("exit", (event) => {
          return navigator["app"].exitApp();
        }
      );


Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow