define([], function() { return { hello: function() { console.log("我是AMD规范写法") } } });
require.config({ paths: { "amd": "./assets/js/amd" } });
requirejs(["amd"], function(o) { o.hello(); });