admin管理员组文章数量:1344182
I'm using VS Code, and was wondering if the Jupyter Notebook support also supports Javascript. Looking around online it looks like it should, but I am unable to produce any output.
This python code shows output "test":
print("test")
This JS code does not show any output:
%%javascript
console.log("test");
This JS code also does not show any output:
%%javascript
element.text("test");
And because I'm desparate, I've also tried this:
%%javascript
element.text = "test";
I have no clue what it is I am doing wrong...
VS Code, Python extension and Jupyter extension are all up to date.
I'm using VS Code, and was wondering if the Jupyter Notebook support also supports Javascript. Looking around online it looks like it should, but I am unable to produce any output.
This python code shows output "test":
print("test")
This JS code does not show any output:
%%javascript
console.log("test");
This JS code also does not show any output:
%%javascript
element.text("test");
And because I'm desparate, I've also tried this:
%%javascript
element.text = "test";
I have no clue what it is I am doing wrong...
VS Code, Python extension and Jupyter extension are all up to date.
Share Improve this question asked Jan 19, 2022 at 10:17 Sam Van BattelSam Van Battel 1331 silver badge7 bronze badges 3- have you found the solution? I'm having the same issue. – Nour Commented Feb 13, 2022 at 21:00
- sadly, no answers found yet :-( – Sam Van Battel Commented Feb 25, 2022 at 19:06
- I posted an answer, not really sure if it works for you. – Nour Commented Feb 26, 2022 at 7:11
3 Answers
Reset to default 10try using:
%%script node
console.log("test");
In VSCode, the Javascript console is available through Help > Toggle Developer Tools
, then on the Console
tab. You'll see the console.log
output appear (VSCode is based on Chromium, so it should be familiar if you ever used the Chrome JS console).
If you want the output to appear in the notebook, you can use javascript to update the HTML output, like:
%%html
<div id='abcd'></div>
<script>
var elem = document.getElementById('abcd');
elem.innerHTML = 'Some text';
</script>
I started using this extension and it is working perfectly.
https://marketplace.visualstudio./items?itemName=lostfields.nodejs-repl
I think it is not the same as Jupyter but it was enough for me.
本文标签: visual studio codeJavascript in VSCode Jupyter notebook not showing outputStack Overflow
版权声明:本文标题:visual studio code - Javascript in VSCode Jupyter notebook not showing output - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743694392a2523254.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论