Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8594815
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T00:17:08+00:00 2026-06-12T00:17:08+00:00

I have written a custom modyle, for example it is printing Hello World to

  • 0

I have written a custom modyle, for example it is printing "Hello World" to the console.

require([
    "dojo/_base/declare"
    ],
    function(declare) {

        return [
            declare("Hello", null, {

                printHello : function() {
                    console.log("Hello, World!");
                }
            })
        ];
    }
);

And the name of the .js file is “Hello.js“. In my html page I need this module, but I have a problem with loading it. My code:

<script type="text/javascript">
    var dojoConfig = {
            async : true,
            parseOnLoad : false,
            isDebug : true,
        packages: [
                   { name: "gui", location: "/scripts/gui" }
         ]
    };
    require([ 
              "gui/common/Hello"
            ],

    function(HelloFunciton) {
        var hello = new Hello();
        hello.printHello();

    });
</script>

But I have a error in console:

"NetworkError: 404 Not Found - http://ajax.googleapis.com/ajax/libs/dojo/1.7.2/scripts/gui/common/Hello.js"

It should the javascript file from the localhost…
What might be the problem?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T00:17:09+00:00Added an answer on June 12, 2026 at 12:17 am

    Add baseUrl: "./" to your dojoConfig.

    Also make the path to your package relative via ./scripts/gui.

    Complete HTML file:

    <html>
        <head>
            <script>
                var dojoConfig = {
                    async: true,
                    baseUrl: "./",
                    parseOnLoad: false,
                    isDebug: true,
                    packages: [
                        { name: "gui", location: "./scripts/gui" }
                    ]
                }
            </script>
            <script src="http://ajax.googleapis.com/ajax/libs/dojo/1.7.2/dojo/dojo.js"></script>
            <script>
                require(["gui/common/Hello"], function(Hello) {
                    var hello = new Hello();
                    hello.printHello();
                });
            </script>
        </head>
        <body>
        </body>
    </html>
    

    The module file ./scripts/gui/common/Hello.js:

    define([
        "dojo/_base/declare"
    ], function(
        declare
    ) {
    
        return declare([], {
            printHello: function() {
                console.log("Hello world!");
            }
        });
    
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have written a custom class to handle database queries to a remote and
I have written a custom class for overriding the seek method of QSlider. Basically
I have written a custom Django Model Field to store dateutil.relativedelta 's. The field
I have written a custom Windows Service that writes data to a custom Event
I have written a custom server control which (pseudo-code) looks like public class MyCustomCtrl
I have written a custom request handler in solr to meet my business requirements.
I'm using nant to build our product and have written a custom task to
I have a custom built application framework written in PHP which I have been
I have a custom component called ButtonPanel written in Actionscript. Basically it's just a
Assume i have a custom Windows application written in C#. This application has only

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.