dqmnueuu459279 2017-04-20 04:56
浏览 32
已采纳

如何在全局设置javascript函数?

I want to set my function in global js. So it can called from anywhere

I have function this :

$(function () {
    function formatCurrency(input) {
        return input.toString().replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1.");
    }
});

I put the function on the

C:\xampp\htdocs\mysystemesources\assets\js\main.js

And I add this : <script src="{{URL::asset('/resources/assets/js/main.js')}}"></script> on the

C:\xampp\htdocs\mysystemesources\views\layouts\app.blade

When executed, on the console exist error like this :

GET http://mysystem.dev/resources/assets/js/main.js 404 (Not Found)

How can I solve it?

  • 写回答

3条回答 默认 最新

  • dongpi9480 2017-04-20 05:19
    关注

    The issue seems to be you're using asset() wrong.

    asset refers to a file in /public.

    You should compile/minimize your JS for production and put it somewhere in /public, i.e. /public/js/my.js

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥33 找熟练码农写段Pyhthon程序
  • ¥100 怎么让数据库字段自动更新
  • ¥15 antv g6 力导向图布局
  • ¥15 quartz框架,No record found for selection of Trigger with key
  • ¥15 锅炉建模+优化算法,遗传算法优化锅炉燃烧模型,ls-svm会搞,后面的智能算法不会
  • ¥20 MATLAB多目标优化问题求解
  • ¥15 windows2003服务器按你VPN教程设置后,本地win10如何连接?
  • ¥15 求一阶微分方程的幂级数
  • ¥15 关于#线性回归#的问题:【统计】回归系数要转化为相关系数才能进行Fisher' Z转化吗(相关搜索:回归模型)
  • ¥100 使用matlab解决含分段变量的优化问题