ג'אווהסקריפט בכותרת התבנית מחזיר '$ אינו מוגדר'

Hi,

In Admin > Customize > Themes > in the header section I add the following but it returns
Uncaught ReferenceError: $ is not defined

<script>
$(document).ready(function() {
$('.topic-list .topic-excerpt[href="/t/urltobechanged/8"]').attr('href', "/t/newurltoset/17 ");
});
</script>

If I add the following though, then it it works fine without error.

<script>
  console.log("Hello, Discourse!");
</script>

Mostly this $ is not defined error occurs because jQuery is not loaded, however shouldn’t the header scripts be by default executed after jQuery is loaded?h.

השתמש ב-JavaScript טבעי, לא ב-jQuery.

2 לייקים

תודה, אבל אם זה JavaScript זה עובד בסדר כשמשתמשים בו בקונסול המפתחים
document.querySelector('.topic-list .topic-excerpt[href="/t/urltobechanged/8"]').setAttribute('href', "/t/newurltoset/17");

איכשהו כשזה נטען מכותרת ה-discourse, זה מוחזר כ-“Uncaught TypeError: document.querySelector(…) is null”, לא משנה אם אני עוטף את זה ב:

function doSomething() {
או
document.addEventListener("DOMContentLoaded", function(event)

יש למישהו מושג איך השורה הבודדת הזו לשינוי המאפיין href צריכה לרוץ כפי שהיא עובדת מצוין בקונסול המפתחים?

Since Discourse is an SPA, relying on the document “DOMContentLoaded” won’t be very helpful, since the document DOM is always “loaded” but the elements can be missing. Instead you’ll want to use Components as @merefield mentioned, or something like this: How do you force a script to refire on every page load in Discourse? - #5 by simon. This way every time the page changes, your code can check for the element you’re trying to change.

לייק 1

Allright, I understand now, coming from wordpress/joomla developement, you think adding js to the header would work in the same way.

Your link provides indeed a solution, note that now the <script type='text/discourse-plugin> headers are deprecated Modernizing inline script tags for templates & JS API

To quickly solve the url situation I ended up doing a permalink directly from discourse admin though.

Thank you for the support and explanation !

לייק 1