Ayuda de la API de MediaWiki
Esta es una página de documentación autogenerada de la API de MediaWiki.
Documentación y ejemplos: https://www.mediawiki.org/wiki/Special:MyLanguage/API:Main_page
action=wbformatvalue
(main | wbformatvalue)
- Este módulo requiere permisos de lectura.
- Fuente: WikibaseClient
- Licencia: GPL-2.0-or-later
Formats DataValues.
Parámetros específicos:
Other general parameters are available.
- generate
El formato de salida que se desee generar.
- Uno de los siguientes valores: text/html, text/html; disposition=verbose, text/html; disposition=verbose-preview, text/plain, text/x-wiki
- Predeterminado: text/x-wiki
- datavalue
The data to format. This has to be the JSON serialization of a DataValue object.
- Este parámetro es obligatorio.
- datatype
El tipo de dato del valor. Esto es distinto del tipo del valor
- Uno de los siguientes valores: commonsMedia, external-id, geo-shape, globe-coordinate, monolingualtext, quantity, string, tabular-data, time, url, wikibase-item, wikibase-property
- property
Identificador de la propiedad a la que pertenece el valor del dato, debe utilizarse en lugar del parámetro datatype.
- options
The options the formatter should use. Provided as a JSON object.
Ejemplos:
- Format a simple string value.
- api.php?action=wbformatvalue&datavalue=%7B%22value%22%3A%22hello%22%2C%22type%22%3A%22string%22%7D [abrir en la zona de pruebas]
- Format a string value as a URL in HTML.
- api.php?action=wbformatvalue&datavalue=%7B%22value%22%3A%22http%3A%5C%2F%5C%2Facme.org%22%2C%22type%22%3A%22string%22%7D&datatype=url&generate=text%2Fhtml [abrir en la zona de pruebas]
- Format a time value as plain text, automatically showing the calendar model if needed.
- api.php?action=wbformatvalue&datavalue=%7B%22value%22%3A%7B%22time%22%3A%22%2B1879-03-14T00%3A00%3A00Z%22%2C%22timezone%22%3A0%2C%22before%22%3A0%2C%22after%22%3A0%2C%22precision%22%3A11%2C%22calendarmodel%22%3A%22http%3A%5C%2F%5C%2Fwww.wikidata.org%5C%2Fentity%5C%2FQ1985727%22%7D%2C%22type%22%3A%22time%22%7D&datatype=time&generate=text%2Fplain&options=%7B%22showcalendar%22%3A%22auto%22%7D [abrir en la zona de pruebas]