I want to get doctype list without cache list data.
@abdo-evs.sa Use frappe.db.get_list
. It doesn’t cache data by default, so you can use it without worrying about caching.
I use it on JS file, then I open doctype and update doc data. When I call the function again, the data not updated.
@abdo-evs.sa The issue you’re experiencing might be due to browser-side caching or the way the data is being fetched asynchronously. The server might return stale data because of caching headers or how the data is being stored in the client-side cache.
You can try use no_cache: true
in your frappe.call