📜  如果使用 optstring json 对象,变量不为空 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:02:25.110000             🧑  作者: Mango

代码示例1
/** Return the value mapped by the given key, or {@code null} if not present or null. */
public static String optString(JSONObject json, String key)
{
    // http://code.google.com/p/android/issues/detail?id=13830
    if (json.isNull(key))
        return null;
    else
        return json.optString(key, null);
}