Populate text fields in SharePoint form with data from another Sharepoint list located in the same site

Hi there,

I am wondering how to populate text fields in SharePoint form with data from another Sharepoint list located in the same site?

For example, I have Sharepoint List A and Sharepoint List B located in the same site, how do I populate my sharepoint List A fields with Sharepoint B fields.

Thanks,

@jyou,

You can populate fields with data from another list using PnPjs library.
See the code example:

pnp.sp.web.lists.getByTitle('ListName').items.getById(1).get().then(function(item){
    fd.field('Title').value = item.Title
});

@mnikitina , Thank you, it works for me now.