为什么我在
fieldName
和 order
上看到红线?我在这里关注 API 参考:
https://www.wix.com/velo/reference/wix-pricing-plans-backend/orders/listcurrentmemberorders
这是参考文献中示例的示例:
/* Sample filters object:
* {
* orderStatuses: ['PAUSED', 'CANCELED']
* }
*/
/* Sample sorting object:
* {
* fieldName: ['createdDate'],
* order: ['ASC']
* }
*/
/* Sample paging object:
* {
* limit: 3,
* skip: 1
* }
*/
红线错误表示:
Type 'string[]' is not assignable to type 'string'
我觉得我正在按照链接的参考资料进行操作,并且通过探索参考资料尝试了各种设置。
(编辑:接下来要研究的是为什么
orders
上的 listedOrders.orders
会抛出错误:Property 'orders' does not exist on type 'Order[]'.
)
API参考的答案是否已经过时?