I want to use a JSON file of data in my module. I put the JSON file in the static folder. I want to open and read it in a controller but I get a 'No such file or directory' error. Any suggestions?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Comptabilitat
- Inventari
- PoS
- Project
- MRP
This question has been flagged
1
Respondre
8827
Vistes
Hi,
you can use get_module_resource function to get the right path of the file.
import json
from odoo.modules.module import get_module_resource
json_file_path = get_module_resource('your_module', 'static/, 'you_file.json')
with open(json_file_path) as f:
data = json.load(f)
Thanks a lot, it works!
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrar-seRelated Posts | Respostes | Vistes | Activitat | |
---|---|---|---|---|
|
0
de febr. 21
|
2465 | ||
|
2
de juny 24
|
4491 | ||
|
1
de nov. 24
|
1059 | ||
|
1
d’abr. 23
|
2393 | ||
|
7
de febr. 23
|
8866 |
To get modules and file path: https://learnopenerp.blogspot.com/2020/06/getting-odoo-modules-and-files-path.html