作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在向 API 添加数据,并且希望我的 oj 表显示它。如何刷新oracle-jet中的特定组件?
我正在使用 oracle-jet v6.1.0 开发一个应用程序,其中我使用本地 api 来获取和存储数据并使用表格显示它。我发送 POST 请求,数据存储在数据库中,在回调函数中,我转到表页面,但没有获取新行!
这是我单击提交按钮时的功能:
self.submitopportunity = function() {
var dataObj = {
"projectName": self.custProject(),
"department": self.custDepartements(),
"type": self.srtVal(),
"budget": self.custBudget(),
"description": self.solutionVal(),
"closeDate": self.closeDate(),
"customer": self.nameVal(),
"product": self.productVal(),
"status": self.statusVal(),
"contact": self.contactVal(),
"favorite": false
};
console.info(dataObj);
$.ajax({
url: url + '/opportunity',
type: "POST",
data: JSON.stringify(dataObj),
contentType: 'application/json',
success: function (response) {
oj.Router.rootInstance.go("opportunities");
return true;
},
error: function(error){
console.log("Something went wrong", error);
}
})
};
当我刷新页面时,会添加新行。那么如何同步或刷新oj-table组件呢?
最佳答案
所有 Oracle JET 组件都有“刷新”功能。只需这样做:
document.getElementById('yourtableid').refresh();
要在导航到表格页面后直接更新组件,您需要使用 oj.Router
的 go
方法 returns a Promise 。我们可以使用回调来刷新表格。
success: function (response) {
oj.Router.rootInstance.go("opportunities").then(
function(result) {
if (result.hasChanged) {
document.getElementById('yourtableid').refresh();
}
},
function(error) {
console.log('Failed. ', error);
}
);
return true;
}
关于javascript - 如何在 oracle-jet 中刷新表 oj-table 组件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54749703/
我是一名优秀的程序员,十分优秀!