gpt4 book ai didi

javascript - Asp.Net 的 Javascript 中的 Node.js 代码

转载 作者:搜寻专家 更新时间:2023-10-31 23:47:29 24 4
gpt4 key购买 nike

Node.js 新手...

我正在研究从 R232 条码扫描器的 COM 端口读取条码。
我找到了一个 Node.js 调用 serialport 并安装了它。我可以使用安装中的示例从 node.js 命令窗口中成功读取条形码扫描。

我的下一步是查看是否可以将此条形码扫描集成到我的 ASP.net Web 窗体应用程序中。我在 IIS 中托管我的应用程序,不想改变它。还要尽量避免使用 ActieX 或 Java Applets 或 Silverlight。还试图让它基于浏览器而不是本地 Windows 桌面应用程序。目前没有时间转换为 Asp.Net MVC。

这就是我现在感到困惑的地方。

1) Node.js 可以创建自己的 Web 服务器并提供自己的 html 内容,而无需 IIS。所以这让我相信这两种技术不能在同一个项目/Web 服务器实例中共存。这是真的吗?

2) 我想做的是在我的 Web 窗体应用程序的 javascript 中,进行调用以读取串行端口并使用结果填充输入文本框。如果这是不可能的,我不想开始把它拼凑起来,我不认为这是可能的。寻找对我的假设的验证。

例如

<!-- HTML FORM -->    
<input type="textbox" id="txtBarcode" />


<!-- Javascript Section -->
<!-- Bind some event for the input textbox -->
<script>

function ReadScan(){
var com = require("serialport");

var serialPort = new com.SerialPort("COM4", {
baudrate: 9600,
parser: com.parsers.readline('\r\n')
});

serialPort.on('open',function() {
console.log('Port open');
});

serialPort.on('data', function(data) {
//I don't think will work here....
$('#txtBarcode').val(data);
});
}


</script>

3) 我认为我正在尝试做的是将 node.js 视为另一个 Web Javascript 库,如 knockout.js 或 jQuery。我可以这样对待 Node.js 吗?

最佳答案

Node.js can create its own web server and serve its own html content without the need of IIS.

是的。

So that leads me to believe these two technologies cannot co-exist within the same project/web server instance. Is this true?

没有。

您可以使用 Node 生成内容,而无需运行 Web 服务器。例如你可以写一些符合 CGI 规范的东西。 (这会非常低效,我不会推荐它,但它是可能的)。

您可以在不同的端口上运行带有 Node 的网络服务器,然后从 IIS 代理请求到它。

I think what I am trying to do is treat node.js as just another web Javascript library like knockout.js or jQuery. Can I treat Node.js this way or no?

没有。

Node.js 是一个执行 JavaScript 的程序。它不是用 JavaScript 编写的库。

即使是,如果您可以像 Knockout 或 jQuery 那样使用它,那么它会在浏览器中运行,并且无法访问连接到服务器的串行端口(或连接到运行浏览器的计算机,因为浏览器中的 JS 被严重沙盒化了)。

I am working on reading a barcode from a COM Port of a R232 Barcode Scanner.

What I want to do is in the javascript of my Web Forms Application, make the call to read the serial port and populate an input textbox with the results

要做到这一点,您需要将条形码阅读器连接到运行浏览器的计算机。

这类硬件通常通过模拟键盘来运行。 您应该能够安装它的标准键盘驱动程序,将焦点放在网页中的输入上,然后就可以开始使用它了。无需编程。

(可选编程:编写客户端 JS 以识别何时填充输入并自动提交表单)。

关于javascript - Asp.Net 的 Javascript 中的 Node.js 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33370799/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com