php – ng-init中的单引号/双引号
作者:互联网
假设我们正在通过Mustache将初始数据从php传递到Angular的视图,并且数据是一些包含引号的字符串,例如“无法删除项目”.
Mustache默认将单引号转换为'喜欢:
ng-init="message='Can't delete item'"
但这会导致某种Angular解析问题:
Lexer Error: Unterminated quote at columns … [‘] in expression [message=’Can’t delete item’]
我不能使用Moustache的三重卷曲,因为它会像:
ng-init="message='Can't delete item'"
输出中出现相同的错误.
普拉克:http://plnkr.co/edit/GCq4gLrD1NxxCvAsjHy9?p=preview
我们如何在Mustache舞台上优雅地解决它?
解决方法:
逃避报价:
ng-init="message='Can\'t delete item'"
标签:php,angularjs,template-engine,mustache,mustache-php 来源: https://codeday.me/bug/20190830/1767567.html