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?

feita há um ano718 visualizações
3 Respostas
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
ESPECIALISTA
respondido há um ano
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>
respondido há um ano
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
respondido há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas