2017-04-18 64 views

回答

0

我有使用Ionic3構建應用程序的woocommerce作爲後端的相同問題。

以下代碼適用於我,但您需要找到一種方法來計算出客戶ID。

updateCustomer(){ 
    this.customer.id=YOUR_CUSTOMER_ID; 
    this.customer.password = NEW_PASSWORD; 
    this.WooCommerce.putAsync("customers/" + this.customer.id, {customer: this.customer}).then((res)=>{ 
     if(JSON.parse(res.body).customer){ 
     console.log('customer updated'); 
     } 
    }, (err)=>{ 
     console.log(err.body) 
    }) 
}