和JS交互碰到”‘“会打断字符串
被打断的字符串,会造成调用JS失败,这个时候要进行转义,添加一个转义符还不行,必须两个.
string = [string stringByReplacingOccurrencesOfString:@"'" withString:@"\\'"];
为什么需要两个转义符
第一个转义符用来转义第二个转义符,第二个转义符用来转义单引号,第一个转义符交给WebView用把被转义的”'“穿送给JS文件,作为字符串的一部分,然后在JS使用第二个转义符转义”‘“;
tag:
缺失模块。
1、请确保node版本大于6.2
2、在博客根目录(注意不是yilia根目录)执行以下命令:
npm i hexo-generator-json-content --save
3、在根目录_config.yml里添加配置:
jsonContent: meta: false pages: false posts: title: true date: true path: true text: false raw: false content: false slug: false updated: false comments: false link: false permalink: false excerpt: false categories: false tags: true