function

搬瓦工VPS

Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outside strict mode错误的解决办法

最近笔记本电脑坏了送修,临时找了一台台式电脑办公,结果之前写好的前端代码无法正常运行了,看了一下提示JS错误: Uncaught SyntaxError: Block-scoped declarations (let, const, function, class) not yet supported outs 这个错误是因为当前电脑的浏览器版本不支持ES6...
赞 (0)阅读(2722)
搬瓦工VPS

$(…).XXX is not a function的解决办法

最近在用一个jquery插件:bootstrap-datepicker.js时遇到错误提示:$(…).datepicker is not a function,这个错误的意思是datepicker不是一个有效的函数,经过检查发现是我调用的bootstrap-datepicker.js文件路径错了。 那么一般有哪几种问题会导致$(…).XXX is not a...
赞 (0)阅读(3153)
服务器

public function list()报错syntax error, unexpected T_LIST, expecting T_STRING

使用thinkphp5开发的时候报错:syntax error, unexpected T_LIST, expecting T_STRING,提示public function list()错误。 原因是list()是php官方的一种语言结构, 把数组中的值赋给一组变量,是php保留字中的一个,因此我们的方法名称不能定义成list(),改成其他名字即可。
赞 (0)阅读(1875)