PerformanceElementTiming.toJSON()
Limited availability
This feature is not Baseline because it does not work in some of the most widely-used browsers.
La méthode toJSON()
de l'interface PerformanceElementTiming
est un sérialiseur standard. Elle renvoie une représentation JSON des propriétés de l'objet.
Syntaxe
var json = PerformanceElementTiming.toJSON();
Valeur de retour
json
-
Un objet JSON qui est la sérialisation de l'objet
PerformanceElementTiming
.
Exemples
Dans cet exemple, l'appel de entry.toJSON()
renvoie une représentation JSON de l'objet PerformanceElementTiming
, avec les informations sur l'élément image.
<img
src="image.jpg"
alt="une belle image"
elementtiming="big-image"
id="myImage" />
const observer = new PerformanceObserver((list) => {
let entries = list.getEntries().forEach(function (entry) {
if (entry.identifier === "big-image") {
console.log(entry.toJSON());
}
});
});
observer.observe({ entryTypes: ["element"] });
Note :
Cet exemple utilise l'interface PerformanceObserver
pour créer une liste d'événements de mesure des performances. Dans notre cas, nous observons l'élément PerformanceEntry.entryType
afin d'utiliser l'interface PerformanceElementTiming
.
Spécifications
Specification |
---|
Element Timing API # dom-performanceelementtiming-tojson |
Compatibilité des navigateurs
BCD tables only load in the browser