我是 node.js 的新手。说 node.js 正在运行
localhost:9090//nodejs/server/messages/1
在那个 url.Application 中运行
本地主机:8080/
我想访问节点,js 会产生一个 HTML 页面。
function get_message() {
$.getJSON('/nodejs/server/messages/1', function (result) {
var df = result;
document.getElementById('txtCompanyId').value = result[0]['CompanyID'];
document.getElementById('txtCompanyName').value = result[2]['CompanyName'];
});
}
我使用的这个函数会导致跨域异常。我使用 Apache 中的代理设置解决了它。如何在 IIS 中配置此设置?或者如何在 IIS 服务器上运行时在 Javascript 中调用该 node.js url?
那么如何在 IIS 中托管 node.js 呢?
请帮忙。