Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
670 views
in Technique[技术] by (71.8m points)

javascript - How to create a modal in moodle using mustache Template

How can i create a modal in moodle using mustache Template, the js must be in a separate file, i don't know hot to put this together, the documentation it's a little bit hard I am doing this inside a local plugin. I'm following the documentation, i have this file structure

├── amd
│   ├── build
│   │   └── modal.min.js
│   └── src
│       └── modal.js
├── classes
│   └── form
│       └── edit.php
├── index.php
├── manage.php
├── styles.css
├── templates
│   └── index.mustache
└── version.php

inside the index.php i call the js using this

$PAGE->requires->js_call_amd('amd/src/modal', 'init');

And in the modal.js i only have a console log, and it doesn't print i always get this error

define([], function() {
  return {
    init: function() {
      console.log('Hello world');
    },
  };
});

Error :

ncaught Error: Script error for "amd/srcmodal"
http://requirejs.org/docs/errors.html#scripterror

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...