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?

posta un anno fa718 visualizzazioni
3 Risposte
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
ESPERTO
con risposta un anno fa
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>
con risposta un anno fa
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
con risposta un anno fa

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande