问题标签 [resolve]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
494 浏览

url-rewriting - 出于开发目的将 url 解析为其他 url

我正在同时处理 asp 和 asp.net 页面。我想在我的本地 iis (v5.1) 中托管应用程序,但后来了解到 iisexpress 适合我的需求。但无论我使用 iis 5.1 还是 iis express,我似乎都有问题。

我使用的 asp 页面是指驻留在不同虚拟目录中的静态资源(css、javascript 等)。例如,一个 css 文件包含看起来像这样。

如果这样的事情应该从测试环境中运行,那么上面的 url 将解析为:

这与我的主要应用程序所在的位置形成鲜明对比。这看起来像:

现在,如果我在端口 8082 中运行 iisexpress,并且有一个入站请求,例如:

它将遇到 404 错误。是否可以指示 iss 或 iis express 解析这样的 url(以 开头/common/...)说http://testing/common/...

更新(2011 年 5 月 31 日,美国标准时间下午 7 点):

一直在研究什么是 url 重写,从例子中我明白了一些事情。我不确定我想要的是否是 url 重写本身。再次以 iisexpress 类比,我知道会有一个入站请求 uri,例如:

但我希望这实际上由以下 uri 提供:

我使用 iisexpress 虚拟化的文件夹中不存在前一个 uri。

我需要在这里重写网址吗?

此外,在 ASP 中,我包含如下行:

甚至这些事情都应该解决给相应的对应http://testing/...方。

ps:我做的都是iis 5.1

0 投票
2 回答
1276 浏览

ioc-container - autofac 可以做部分解析吗?

我似乎非常需要这个。

假设我有一个带有构造函数的类,它带有几个参数。其中一些可以通过注册组件来解决。但其余的是在运行时创建的实例(例如从数据库中获取实体)。

Autofac 可以很好地处理这些情况吗?或者我的设计不是最优的?

为了澄清,我的类具有这样的构造函数:

我想做这样的事情:

container.Resolve<MyClass>(data1, data2);

0 投票
2 回答
60212 浏览

python - 使用 MySQLdb for Python 时如何使用选项 skip-name-resolve?

我尝试从我的虚拟机连接到域中的数据库。它适用于 XP,但不知何故不适用于 Win7 并退出:“OperationalError: (1042, "Can't get hostname for your address")”

现在我尝试禁用防火墙和其他东西,但这并不重要。我不需要 DNS 解析,这只会减慢一切。所以我想使用“skip-name-resolve”选项,但是在使用MySQLdb for Python时没有my.ini或my.cnf,那我怎么还能使用这个选项呢?

感谢您的帮助-亚历克斯

0 投票
2 回答
50 浏览

gallio - 对于最新版本的 Gallio,CCiModuleCache 位于什么命名空间中?

我有一些旧代码正在尝试使用在代码中实例化的类 CciModuleCache 进行编译。最新版本的 Gallio 无法解决此问题。我仍然得到这个类下的红色卷曲下划线。有谁知道这个类现在驻留在哪个命名空间中?

http://www.gallio.org/

命名空间/库我认为它在,但不是:
using Gallio.Common.Reflection.Impl;

答:这个类最近被改变了,所以程序集之外的代码可以调用它。它将不再具有“内部”访问类型

0 投票
3 回答
7670 浏览

java - InetAddress.getByName fails behind proxy

I'm trying to resolve a host name to its' corresponding IP.

My environment is a mac in a corporate network behind a proxy server, which is configured with a .pac file via the system preferences (automatic proxy configuration). So far everything is working fine and I can access resources inside and outside my corporate network.

Resolving hosts within my network works perfectly fine: InetAddress.getByName("host.local");

But when I use external host names, I get a UnknownHostException: InetAddress.getByName("google.com");

produces

(I'm a little bit surprised about Inet6AddressImpl here)

As far as I understand is InetAddress.getByName using the native mechanisms to resolve host names. So I don't think that the error is caused by a missing proxy configuration within the java jvm.

But what else can it be, if everything else is working fine?

Some (maybe) useful additional information:

  • I'm using a MacBook, ifconfig shows the interfaces lo0, gif0, stf0, en0, fw0, en1 -> connected to the network, with ipv4 address.

  • nslookup google.com on the console returns ** server can't find google.com: NXDOMAIN

  • The same code on a windows machine within the network produced the same Exception

Any ideas about the cause of this error? Or are there other ways to resolve host names in java?

0 投票
2 回答
623 浏览

jquery - 如何使用 idref 解析 xml 元素

给定一些示例data.xml文件:

还有一些用于获取data.xml文件的 jquery 代码:

什么是一种有效且紧凑的方法来解析所category获取的元素$categories通过其idref属性引用的元素?

我想出了以下内容:

但我认为可能有一种更紧凑的方式来收集元素。

0 投票
4 回答
1597 浏览

php - PHP 检查域列表的最快方法

我有一个要解析为 IP 地址的 20.000 个域的列表。我正在寻找在 php 中执行此操作的最快方法。

我用过gethostbynamel(),但是太慢了。我正在寻找另一个可以过滤掉根本不存在的主机然后运行的命令gethostbynamel()

  1. 我试过checkdnsrr("host.com","A")了,但是太慢了。
  2. curl也太慢了。
0 投票
1 回答
3570 浏览

php - php getcwd() 解析符号链接的目标而不是当前目录

据我所知,php getcwd()(和类似的函数,例如dirname(__FILE__))应该返回正在执行的文件的当前目录。

如果当前目录恰好是指向另一个目录的符号链接,则 php(可能与 apache 结合使用)应该返回将符号链接名称显示为您所在的“目录”的路径。

例子:

在浏览器中访问http://localhost/two/index.php会显示/var/www/one.

我希望它显示/var/www/two

有谁知道这是我可以更改的 php 或 apache 设置吗?还是我无法以这种方式使用符号链接?

0 投票
1 回答
3593 浏览

autofac - Autofac 通过 IIndex 解决有关键控注册的问题

这是配置在抽象类上定义的 Autofac 委托工厂的后续问题。我已经实施了使用IIndex<K,V>@Aren 在他的回答中提出的建议,但我无法克服以下错误:

测试方法 IssueDemoProject.WidgetTest.ProblemIllustration 抛出异常:Autofac.Core.DependencyResolutionException:无法使用可用服务和参数调用类型“IssueDemoProject.WidgetWrangler”的“公共绑定标志”的构造函数:无法解析参数“IssueDemoProject。构造函数 'Void .ctor(Autofac.IComponentContext, IssueDemoProject.WidgetType)' 的 WidgetType widgetType'。

更新:应该注意的是,如果我根据参数注册不同的具体类,那是可行的。请参阅下面的第二个测试。

这是一些说明问题的示例代码。[编辑:我更新了相同的内容以使用 IIndex 查找。]

有人可以告诉我我做错了什么吗?

0 投票
1 回答
12528 浏览

jquery - .resolve() 和 .promise() 有什么区别?

我正在研究 jQuery 的延迟特性。我在互联网上尝试了几个例子。我理解它的概念,但我不明白 和 之间的resolve()区别promise()

resolve()和 和有什么区别promise()