Console log in Javascript Office Addin

I have a question about "console.log" in the Javascript Web Office Addins . I am currently working on a Javascript Word Addin and cannot fix it because I do not understand where the output of "console.log" is sent. There are many examples on the Microsoft site that contain "console.log", but they never indicate how to test these outputs.

So the question is how can I see this output of "console.log". I do not use Visual Studio.

BR, Alexey

+11
source share
5 answers

, Visual Studio, , Visual Studio? Visual Studio ( , - / )?

:

  • Internet Explorer
  • Visual Studio → →
  • " ": " "
  • iexplore.exe
  • ""

, ( " JavaScript"; Quick Launch (ctrl-Q), , ), DOM Explorer ( Quick Launch, ) .

enter image description here

~ , Office Extensibility, MSFT

+9

, Visual Studio, VS 2015 :

(after starting the project) Debug > Windows > JavaScript Console
+1

To view the logs generated by Office add-ins, you must use the web service of your application, for example, Excel, Outlook, etc. All you have to do is upload the manifest.xml file as an add-on on the Internet, and then it will automatically sync or update when you make changes to local files.

0
source

All Articles