如何从文本中删除html标签并将其存储在EL中



我使用atg dsp:valueof标记获取数据,"valueishtml"属性设置为true。我需要通过EL将检索到的数据(即没有任何html标记)传递给json变量。有人能指导我如何做到这一点吗。下面是我需要做的一个例子。请注意,这不是一个代码。

var mydatawithouthtml = <dsp:valueof param="product.data" valueishtml="true"/>
<json:property name="data" value="${mydatawithouthtml}" />

目前"product.data"包含html标签,这些标签将被传递给json。需要没有任何html标记的json数据。

TIA

最简单的方法是开发自己的tagconverter。一个简单的实现方法如下:

package com.acme.tagconverter;
import java.util.Properties;
import java.util.regex.Pattern;
import atg.droplet.TagAttributeDescriptor;
import atg.droplet.TagConversionException;
import atg.droplet.TagConverter;
import atg.droplet.TagConverterManager;
import atg.nucleus.GenericService;
import atg.nucleus.ServiceException;
import atg.servlet.DynamoHttpServletRequest;
public class StripHTMLConverter extends GenericService implements TagConverter {
    private Pattern tagPattern;
    @Override
    public void doStartService() throws ServiceException {
        TagConverterManager.registerTagConverter(this);
    }
    public String convertObjectToString(DynamoHttpServletRequest request, Object obj, Properties attributes) throws TagConversionException {
        return tagPattern.matcher(obj.toString()).replaceAll("");
    }
    public Object convertStringToObject(DynamoHttpServletRequest request, String str, Properties attributes) throws TagConversionException {
        return str;
    }
    public String getName() {
        return "striphtml";
    }
    public TagAttributeDescriptor[] getTagAttributeDescriptors() {
        return new TagAttributeDescriptor[0];
    }
    public void setTagPattern(String tagPattern) {
        this.tagPattern = Pattern.compile(tagPattern);
    }
    public String getTagPattern() {
        return tagPattern.pattern();
    }
}

然后通过组件属性文件引用,该文件包含以下模式:

$class=com.acme.tagconverter.StripHTMLConverter
tagPattern=<[^>]+>

显然,这假设在开始"&lt和结尾">"应删除。你可以自己在RegEx上工作,找到更好的模式。

您还应该在Initial.properties 中注册TagConverter

$class=atg.nucleus.InitialService
$scope=global
initialServices+=
    /com/acme/tagconverter/StripHTMLConverter 

现在,您应该能够按照自己的意愿使用它。

var mydatawithouthtml = '<dsp:valueof param="product.data" converter="striphtml"/>'

相关内容

  • 没有找到相关文章

最新更新