我从函数接收一个值以传递给类中的方法。当我传递从 web.js 中的函数返回的值时,它在我的shopifyStore类中返回未定义。可能是什么原因以及我该如何解决这个问题?
PS:JavaScript初学者
网页.js
window.shopify.findName({}, function(items) {
var shopify = items;
console.log(items); //this returns the value
pushValue(items);
});
export function pushValue(items) { return items; }
成分
import * as shopifyHelper from '/web.js';
class shopifyStore extends HTMLElement {
constructor() {
super();
}
getItemCount() {
console.log(shopifyHelper.pushValue()) // this returns undefined
}
}
HUWWW
相关分类