[Vuejs]-How can I access this data on data.d.results

0👍

Perhaps it’s an issue with backlash before double quotes. Tested with:
let data = {d: { results: [ { Title: "\"hello\"", } ] }}
console.log(data.d.results[0].Title);

Worked fine. Can’t provide answer without more context

Leave a comment