EXTJS,如何逃避特殊角色?

时间:2022-06-18 00:14:43

In the EXTJS, how to escape special character ?

在EXTJS中,如何逃避特殊角色?

for example, compiler is complaining showDetail('{1}') , how to escape the '' ?

例如,编译器正在抱怨showDetail('{1}'),如何逃避''?

Thanks

谢谢

 return Ext.String.format(
            '{0} <a href="#" onclick="showDetail('{1}');">detail</a>',
            value,            
            record.getReportId()            
        );

1 个解决方案

#1


1  

You should be able to use the standard \. Place it before ' like so \'.

你应该能够使用标准\。把它放在'喜欢'之前。

    return Ext.String.format(
        '{0} <a href="#" onclick="showDetail(\'{1}\');">detail</a>',
        value,            
        record.getReportId()            
    );

#1


1  

You should be able to use the standard \. Place it before ' like so \'.

你应该能够使用标准\。把它放在'喜欢'之前。

    return Ext.String.format(
        '{0} <a href="#" onclick="showDetail(\'{1}\');">detail</a>',
        value,            
        record.getReportId()            
    );