我正在寻找一种方法,使用API将其他系统的产品添加到WooCommerce中,同时维护旧系统function onEdit(event) {
myFunction1(event);
}
function myFunction1(event) {
// start of code
if(condition == met) {
//operation to follow
} //closes if statement operations; no close to myFunction1()
function myFunction2() {
//start of code
if(condition == met){
//operation to follow
} //closes if statement operation
} //closes myFunction2()
myFunction2(); //calls myFunction2() so that it will run after myFunction1() code
} // closes myFunction1()
。
另一个系统为每个产品都有一个唯一的密钥,我想用它来通过WooCommerce API访问WooCommerce中的产品。
最简单的方法是什么?
我考虑重新利用Woocommerce中的reference id
字段来保留旧的系统ID,然后在检索产品时对其进行过滤。这是一个合适的解决方案?
答案 0 :(得分:0)
我使用了像上面问题中建议的slug字段,它工作正常。
会向其他人推荐此方法,因为它允许您通过API访问您的密钥。