I want to take current active model name from URL in though JS code.Is there any other way?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
You can use 'window.location.href' to get the current browser url.See my below code and you can get the current model name by splitting the string in JS.
// http://localhost:1287/web?db=mar_12#id=3&action=211&model=account.invoice&view_type=form&menu_id=88
var current_url = window.location.href;
var myArray = current_url.split("&");
var current_model = myArray[2].replace('model=',''); // model=account.invoice
Hope it will be useful for you.
You can get current url using location.href and can get the current model using state data
this.state.model --- view renderer provide the model data and its context in state parameter.
So instead of splitting the URL to get the model name you can take the benefit of widget data.
相關帖文 | 回覆 | 瀏覽次數 | 活動 | |
---|---|---|---|---|
|
0
12月 20
|
3903 | ||
|
1
7月 25
|
2300 | ||
|
2
7月 25
|
7767 | ||
|
2
7月 25
|
4186 | ||
|
2
7月 25
|
3966 |
@Nivas. Thanks it works now.