问题标签 [getproperty]

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 投票
3 回答
43728 浏览

c# - BindingFlags.IgnoreCase 不适用于 Type.GetProperty()?

想象以下

类型 T 有一个字段 Company。执行以下方法时,它可以完美运行:

虽然下面的电话我得到了空

有人有想法吗?

0 投票
6 回答
21208 浏览

c# - 使用 GetProperty 获取子属性的最佳方法

如何通过反射访问“ZipCode”或“Address.ZipCode”?例如:

0 投票
1 回答
363 浏览

groovy - 动态获取属性的语法如何?

这是可能的,如果,如何?

0 投票
3 回答
96028 浏览

python - 如何在不破坏默认行为的情况下覆盖 Python 中的 __getattr__?

我想重写__getattr__类上的方法来做一些花哨的事情,但我不想破坏默认行为。

这样做的正确方法是什么?

0 投票
1 回答
590 浏览

vb.net - 是否有 Getproperty 或等效函数?

我想知道是否有类似这样的伪代码:

myVar = "functionName"
call someObject.(myVar evaluation)

这将相当于:

call someObject.functionName

在VB中是可能的。我知道这是使用 GetProperty 方法在其他一些语言中完成的。

0 投票
4 回答
6185 浏览

groovy - how to retrieve nested properties in groovy

I'm wondering what is the best way to retrieve nested properties in Groovy, taking a given Object and arbitrary "property" String. I would like to something like this:

I've had a hard time finding an example of others wanting to do this, so maybe I'm not understanding some basic Groovy concept. It seems like there must be some elegant way to do this.

As reference, there is a feature in Wicket that is exactly what I'm looking for, called the PropertyResolver: http://wicket.apache.org/apidocs/1.4/org/apache/wicket/util/lang/PropertyResolver.html

Any hints would be appreciated!

0 投票
2 回答
10310 浏览

android - Android KSoap2:如何获取属性名称

我正在使用 KSoap2 为我的 Android 应用程序调用 Web 服务。我正在使用以下代码来调用网络服务。

我得到了来自网络服务的完美响应。的String.valueOf响应如下:

现在,我可以轻松获取属性的值,但我也想获取名称属性(例如 NewsID、NewsSubject、NewsArtist、ModifiedDate)。我如何获得物业的名称?

0 投票
4 回答
354 浏览

java - 使用 System.getProperty 作为条件

可以使用 xxx.equals(System.getProperty(key)) 作为条件吗?或者我应该将这些属性用于其他目的吗?

我一直在读这些;

http://download.oracle.com/javase/tutorial/essential/environment/sysprop.html

http://download.oracle.com/javase/6/docs/api/java/lang/System.html

但是,我对它的用法有点困惑。更多链接或一些代码示例将非常有帮助。

谢谢...

0 投票
2 回答
481 浏览

javascript - 如何可靠且一致地获得 VIDEO 元素的计算宽度样式?

控制台总是显示“300px”,但显然我正在寻找的值是“640px”。如果我在该 console.log 调用上使用 setTimeout 并延迟 100 毫秒,则正确的“640px”值会显示在控制台中。

不过,我宁愿不使用 setTimeout。是否有“正确”的方法来获得准确计算的样式值?

0 投票
3 回答
1105 浏览

java - “application.path”变量的用途和用法

在剧中!我找到了以下两行main方法的框架源代码:Server.java

我在哪里可以找到application.path价值?