REST API 不调用导航
本文关键字:导航 调用 API REST | 更新日期: 2023-09-27 18:32:19
嗨,我的 js 文件中有以下代码。 im 使用 DRUNDAL 框架使用 REST API 的文件上传应用程序。 在该http://localhost:49589/api/files
中,它将给出存储在数据库中的文件列表。
var Value = ko.observableArray([]);
self.js = $.getJSON("http://localhost:49589/api/files", function (result) {
self.Value(result);
});
并且视图具有以下代码
<table data-bind="foreach: Value">
<tr>
<td data-bind=" text: ID "></td>
<td data-bind=" text: Name "> </td>
<td data-bind=" text: Type "> </td>
<td data-bind=" text: Size "> </td>
</tr>
</table>
一旦我上传了一个文件,我就会收到成功警报,它就会添加到数据库中。 但是如果我导航到主页,则不包括新添加的文件详细信息. 但是如果我关闭我的应用程序并重新启动它,我将获得新添加的文件信息. 我知道发生这种情况是因为当我导航到主页时,http://localhost:49589/api/files
它不被调用.有没有办法在导航时重新呈现主页
确保在
激活函数中调用 API。
define(['plugins/http', 'durandal/app', 'knockout'], function (http, app, ko) {
return {
Value: ko.observableArray([]),
activate: function () {
var that = this;
return http.get('http://yourservice.com', { format: 'json' }, 'jsoncallback').then(function (response) {
that.Value= response;
});
}
}
});