breezejs 导航刷新 "There is no resourceName for this query"

breezejs navigation refresh "There is no resourceName for this query"

我有一个轻而易举的 js 导航 属性,所有加载都很好,但我想刷新导航记录,所以我尝试使用以下代码

this.data().entityAspect
  .loadNavigationProperty('PropertyDocuments')
  .fail((reason) => alert("Data refresh failed" + reason));

出现错误没有此查询的资源名称

正确的刷新方法是什么?

导航属性数据:-

?this.data().getProperty('PropertyDocuments');
__proto__: []
_addsInProcess: []
arrayChanged: {...}
length: 19
navigationProperty: {...}
parentEntity: {...}
wasLoaded: true
[0]: {...}
[1]: {...}
[2]: {...}
[3]: {...}


?this.data().getProperty('PropertyDocuments').navigationProperty
__proto__: {...}
associationName: "PropertyDocument_PropertyForSale"
entityType: {...}
entityTypeName: "PropertyDocument:#DomainModel.Models"
foreignKeyNames: []
foreignKeyNamesOnServer: []
inverse: {...}
invForeignKeyNames: [PropertyID]
invForeignKeyNamesOnServer: [PropertyID]
isScalar: false
name: "PropertyDocuments"
nameOnServer: "PropertyDocuments"
parentType: {...}
validators: []

这可能是由于没有 'default' 资源名称与导航 属性 返回的实体类型关联所致。 breeze 使用 resourceName 来确定要调用的 Web 服务端点。

查看此 属性 返回的实体类型的元数据。我的猜测是 defaultResourceName 对于这种类型是空的。您可以通过 MetadataStore 为任何类型设置 defaultResourceName。

var custType = em1.metadataStore.getEntityType("PropertyDocument");
custType.setProperties( {
    defaultResourceName: "PropertyDocuments"
)};

另请参阅本页的 'defaultResourceName' 说明: http://www.breezejs.com/sites/all/apidocs/classes/EntityType.html