Skip to main content
How do I populate a lightning-combobox with options from an Apex controller?

I have the following, but the combox doesn't show any options. I can see the alert popup with the option Name it's just not diplaying in the combobox.

HTML

<template>

<lightning-combobox

name="recentReports"

label="Report"

placeholder="Select Report"

value={value}

options={reportOptions}

onchange={handleRecentReportsChange} >

</lightning-combobox>

</template>

JS

import { LightningElement, track, wire } from 'lwc';

import getRecentReports from '@salesforce/apex/ReportController.getRecentReports';

export default class ReportLink extends LightningElement {

@track reportOptions = [];

@track value = '';

connectedCallback() {

getRecentReports()

.then(result => {

for (var i = 0; i < result.length; i++) {

this.reportOptions.push({label: result[i].Name, value: result[i].Id});

alert(result[i].Name);

}

})

.catch(error => {

alert(JSON.stringify(error));

});

}

handleRecentReportsChange(){

}

}

Apex

public with sharing class ReportController {

public ReportController() {

}

@AuraEnabled(Cacheable=true)

public static List<RecentlyViewed> getRecentReports(){

return [SELECT Id, Name FROM RecentlyViewed WHERE Type = 'Report'];

}

}

 
3 respuestas
  1. 12 ene 2022, 20:01
    Your suggestions don't help, and feel like a lazy response
0/9000