TypeError: this.cartNotification.setActiveElement is not a function
を解決したいです。
shopifyのDawnというテーマを元にレイアウトを変えたりしています。
商品ページで、カートに追加というボタンを動かしたいのですが、上記のエラーが出てしまいます。
このエラーはどういうことなのでしょうか?関数でないというのどういうことなのでしょうか?
教えて頂けますと幸いです。
if (!customElements.get('product-form')) { customElements.define('product-form', class ProductForm extends HTMLElement { constructor() { super(); this.form = this.querySelector('form'); this.form.addEventListener('submit', this.onSubmitHandler.bind(this)); this.cartNotification = document.querySelector('cart-notification'); } onSubmitHandler(evt) { evt.preventDefault(); const submitButton = this.querySelector('[type="submit"]'); if (submitButton.classList.contains('loading')) return; this.handleErrorMessage(); /*エラー箇所*/this.cartNotification.setActiveElement(document.activeElement); submitButton.setAttribute('aria-disabled', true); submitButton.classList.add('loading'); const config = fetchConfig('javascript'); config.headers['X-Requested-With'] = 'XMLHttpRequest'; config.body = JSON.stringify({ ...JSON.parse(serializeForm(this.form)), sections: this.cartNotification.getSectionsToRender().map((section) => section.id), sections_url: window.location.pathname }); fetch(`${routes.cart_add_url}`, config) .then((response) => response.json()) .then((response) => { if (response.status) { this.handleErrorMessage(response.description); return; } this.cartNotification.renderContents(response); }) .catch((e) => { console.error(e); }) .finally(() => { submitButton.classList.remove('loading'); submitButton.removeAttribute('aria-disabled'); }); } handleErrorMessage(errorMessage = false) { this.errorMessageWrapper = this.errorMessageWrapper || this.querySelector('.product-form__error-message-wrapper'); this.errorMessage = this.errorMessage || this.errorMessageWrapper.querySelector('.product-form__error-message'); this.errorMessageWrapper.toggleAttribute('hidden', !errorMessage); if (errorMessage) { this.errorMessage.textContent = errorMessage; } } }); }
回答3件
あなたの回答
tips
プレビュー