Preguntas etiquetadas con null

Nulo significa * nada * o * desconocido *, según el contexto. Utilice la etiqueta "sql-null" para preguntas específicas de SQL.

7
El origen nulo no está permitido por Access-Control-Allow-Origin
He creado un pequeño archivo xslt para crear una salida html llamada weather.xsl con el siguiente código: <!-- DWXMLSource="http://weather.yahooapis.com/forecastrss?w=38325&u=c" --> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" exclude-result-prefixes="yweather" xmlns:yweather="http://xml.weather.yahoo.com/ns/rss/1.0" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"> <xsl:output omit-xml-declaration="yes" indent="yes"/> <xsl:strip-space elements="*"/> <xsl:template match="/"> <img src="{/*/*/item/yweather:condition/@text}.jpg"/> </xsl:template> </xsl:stylesheet> Quiero cargar la salida html en un div en un archivo html que …



4
Seleccionar filas que no están presentes en otra tabla
Tengo dos tablas postgresql: table name column names ----------- ------------------------ login_log ip | etc. ip_location ip | location | hostname | etc. Quiero obtener todas las direcciones IP desde las login_logque no haya una fila ip_location. Intenté esta consulta pero arroja un error de sintaxis. SELECT login_log.ip FROM login_log WHERE …

27
¿Cómo verificar si mi cadena es igual a nula?
Quiero realizar alguna acción SOLO SI mi cadena tiene un valor significativo. Entonces, intenté esto. if (!myString.equals("")) { doSomething } y esto if (!myString.equals(null)) { doSomething } y esto if ( (!myString.equals("")) && (!myString.equals(null))) { doSomething } y esto if ( (!myString.equals("")) && (myString!=null)) { doSomething } y esto if …


16
¿Cuándo debo usar nil y NULL en Objective-C?
Este es un código de muestra: NSDictionary *myDictionary = [NSDictionary dictionary]; NSNumber *myNumber = [myDictionary valueForKey: @"MyNumber"]; NSLog(@"myNumber = %@", myNumber); // output myNumber = (null) if (myNumber == nil) NSLog(@"test 1 myNumber == nil"); if (myNumber == NULL) NSLog(@"test 2 myNumber == NULL"); if ([myNumber isEqual:[NSNull null]]) NSLog(@"test 3 …
170 objective-c  null  nsnull 

8
Comprobación nula de JavaScript
Me he encontrado con el siguiente código: function test(data) { if (data != null && data !== undefined) { // some code here } } Soy algo nuevo en JavaScript, pero, por otras preguntas que he estado leyendo aquí, tengo la impresión de que este código no tiene mucho sentido. …

13
Cómo verificar objetos nulos en jQuery
Estoy usando jQuery y quiero verificar la existencia de un elemento en mi página. He escrito el siguiente código, pero no funciona: if($("#btext" + i) != null) { //alert($("#btext" + i).text()); $("#btext" + i).text("Branch " + i); } ¿Cómo verifico la existencia del elemento?
169 javascript  jquery  dom  object  null 

7
¿Cuál es la forma correcta de representar elementos XML nulos?
He visto nullelementos representados de varias maneras: El elemento está presente con xsi:nil="true": <book> <title>Beowulf</title> <author xsi:nil="true"/> </book> El elemento está presente, pero se representa como un elemento vacío (que creo que está mal ya que está 'vacío' y nulles semánticamente diferente): <book> <title>Beowulf</title> <author/> </book> <!-- or: --> <book> …
166 xml  null  xml-nil 


6
detección nula en Go
Veo mucho código en Ir para detectar nulo, así: if err != nil { // handle the error } Sin embargo, tengo una estructura como esta: type Config struct { host string port float64 } y config es una instancia de Config, cuando lo hago: if config == nil { …
165 go  null 


7
¿Cuáles son las ventajas de usar nullptr?
Este código conceptual hace lo mismo para los tres punteros (inicialización segura del puntero): int* p1 = nullptr; int* p2 = NULL; int* p3 = 0; Entonces, ¿cuáles son las ventajas de asignar punteros nullptrsobre la asignación de los valores NULLo 0?
163 c++  c++11  null  c++-faq  nullptr 

6
MySQL CONCAT devuelve NULL si algún campo contiene NULL
Tengo los siguientes datos en mi tabla "dispositivos" affiliate_name affiliate_location model ip os_type os_version cs1 inter Dell 10.125.103.25 Linux Fedora cs2 inter Dell 10.125.103.26 Linux Fedora cs3 inter Dell 10.125.103.27 NULL NULL cs4 inter Dell 10.125.103.28 NULL NULL Ejecuté debajo de la consulta SELECT CONCAT(`affiliate_name`,'-',`model`,'-',`ip`,'-',`os_type`,'-',`os_version`) AS device_name FROM devices Devuelve …
163 mysql  sql  null  concat 

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.