有没有办法检查新对象/编辑对象是否已同步?我需要放置一个指示器,显示已编辑的对象是否已成功同步或仍然只保存在本地。我正在使用Realm Object Server v1.0。
答案 0 :(得分:2)
由于同步的工作方式,此信息无法以对象级粒度提供。同步一次处理事务。您可以在<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-title">
Subcontractors
<ul class="panel-tools">
<li><a class="icon minimise-tool no-print"><i class="fa fa-minus"></i></a></li>
</ul>
</div>
<div class="panel-body table-responsive" class="panel-collapse collapse">
<table id="subcontractor_table" class="table table-striped">
<thead>
<tr>
<td>First Name</td>
<td>Last Name</td>
<td width="200px">Hours Quoted</td>
<td width="200px">Rate</td>
<td width="200px">Amount Quoted</td>
<td width="100px">Actions</td>
</tr>
</thead>
<tbody id="subcontractor_table_body"></tbody>
</table>
</div>
</div>
</div>
进度模式下使用SyncSession.addProgressNotification(for:mode:block:)
,以便在上传给定写入事务中所做的更改时收到通知。