如何解决JavaScript中UUID作为方法参数在方法中无法传递而数字却正常传递的问题
如:
<input type="button" onclick="toStop(${mould.id})" value="停用" class="button" />
${mould.id}为UUID传递的值 例如:418973f9-4594-469c-98e8-c0381159e55f 网上说跟 - 有关 不识别
其实很简单
把 onclick="toStop(${mould.id})" 改成 onclick="toStop('${mould.id}')" 就可以了