资源简介
vue前台代码,搭配后端Tornado,以及Nginx服务器,以及Mysql。
代码片段和文件信息
/**
* A trivial bootstrap class that simply adds the path to the
* .js file as an argument to the Rhino call. This little hack
* allows the code in the .js file to have access to it‘s own
* path via the Rhino arguments object. This is necessary to
* allow the .js code to find resource files in a location
* relative to itself.
*
* USAGE: java -jar jsdebug.jar path/to/file.js
*/
public class JsDebugRun {
public static void main(String[] args) {
String[] jsargs = {“-j=“+args[0]};
String[] allArgs = new String[jsargs.length + args.length];
System.arraycopy(args 0 allArgs 0 args.length);
System.arraycopy(jsargs 0 allArgs args.length jsargs.length);
org.mozilla.javascript.tools.debugger.Main.main(allArgs);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-09-23 11:45 SecretHouse\
文件 313 2018-09-18 19:05 SecretHouse\.babelrc
文件 243 2018-09-18 19:05 SecretHouse\.editorconfig
文件 34 2018-09-18 19:05 SecretHouse\.eslintignore
文件 4956 2018-09-18 19:05 SecretHouse\.eslintrc.js
目录 0 2018-09-23 10:39 SecretHouse\.git\
文件 16 2018-09-23 10:31 SecretHouse\.git\COMMIT_EDITMSG
文件 332 2018-09-23 09:57 SecretHouse\.git\config
文件 73 2018-09-23 09:57 SecretHouse\.git\desc
文件 103 2018-09-23 10:36 SecretHouse\.git\FETCH_HEAD
文件 23 2018-09-23 09:57 SecretHouse\.git\HEAD
目录 0 2018-09-23 11:50 SecretHouse\.git\hooks\
文件 759 2018-09-23 11:50 SecretHouse\.git\hooks\applypatch-msg
文件 478 2018-09-23 09:57 SecretHouse\.git\hooks\applypatch-msg.sample
文件 735 2018-09-23 11:50 SecretHouse\.git\hooks\commit-msg
文件 896 2018-09-23 09:57 SecretHouse\.git\hooks\commit-msg.sample
文件 3327 2018-09-23 09:57 SecretHouse\.git\hooks\fsmonitor-watchman.sample
文件 765 2018-09-23 11:50 SecretHouse\.git\hooks\post-applypatch
文件 753 2018-09-23 11:50 SecretHouse\.git\hooks\post-checkout
文件 741 2018-09-23 11:50 SecretHouse\.git\hooks\post-commit
文件 735 2018-09-23 11:50 SecretHouse\.git\hooks\post-merge
文件 747 2018-09-23 11:50 SecretHouse\.git\hooks\post-receive
文件 747 2018-09-23 11:50 SecretHouse\.git\hooks\post-rewrite
文件 741 2018-09-23 11:50 SecretHouse\.git\hooks\post-update
文件 189 2018-09-23 09:57 SecretHouse\.git\hooks\post-update.sample
文件 759 2018-09-23 11:50 SecretHouse\.git\hooks\pre-applypatch
文件 424 2018-09-23 09:57 SecretHouse\.git\hooks\pre-applypatch.sample
文件 736 2018-09-23 11:50 SecretHouse\.git\hooks\pre-auto-gc
文件 735 2018-09-23 11:50 SecretHouse\.git\hooks\pre-commit
文件 1642 2018-09-23 09:57 SecretHouse\.git\hooks\pre-commit.sample
文件 805 2018-09-23 11:50 SecretHouse\.git\hooks\prepare-commit-msg
............此处省略33440个文件信息
评论
共有 条评论