cloud9 preview running application

0

window.location.pathname = newPath; document.location.search = params;

these methods don't run so i can not change url and control my lambda code

  • Could you elaborate what are you trying to achieve? Are you trying to manipulate browser url from lambda?

質問済み 1年前718ビュー
3回答
0

Hi - Can you please provide more details on what type of application/work you are trying to do on cloud9? Also did you get a chance to review Previewing running applications in the AWS Cloud9 Integrated Development Environment (IDE)

profile pictureAWS
エキスパート
回答済み 1年前
0

for example the code below. when i click button it doesn't change url in cloud9 "Previev Running Application" which starts a browers. on the other hand if i deploy it cloud app the url is changed.

<input type="button" value="Load new document" onclick="newDoc()"> <script type="text/javascript"> function newDoc() { alert('hello'); window.location.assign("https://www.hurriyet.com.tr") } </script>
回答済み 1年前
0

Hi, by design, applications that are loading inside of built-in Preview browser in Cloud9 IDE are rendered in secured sandboxed iframe, which prevents application from modifying parent window location. To preview application without this limitation, you could open application preview in separate pop out browser tab https://docs.aws.amazon.com/cloud9/latest/user-guide/app-preview.html#app-preview-app-open-tab

AWS
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ