0

继我之前的问题(如何在 ColdFusion 中使用 regex 将所有锚标记替换为不同的锚)之后,我想使用 JSoup 来操作Argument来自 aForm的内容,然后将操作的内容插入数据库。

以下是从表单发送到服务器的示例:

<form>
   <div id="Description" contenteditable="true">
   <p>
      Terminator Genisys is an upcoming 2015 American 
      science fiction action film directed by Alan Taylor. 

      <img id="Img0" src="http://www.moviepics.com/terminator1.jpg" />
      <img id="Img1" src="http://www.moviepics.com/terminator2.jpg" />
      <img id="Img2" src="http://www.moviepics.com/terminator2.jpg" />

      You can find out more by <a href="http://www.imdb.com">clicking here</a>
   </p>
   </div>
</form>

以下是我的 CFC 目前将如何处理它(基本思想):

<cfquery>
INSERT INTO MyTable (Value1, Description)
VALUES
(
   <cfif structkeyexists(ARGUMENTS.Value1)>
      <cfqueryparam value="#ARGUMENTS.Value1#" cf_sql_type="nvarchar" />
   <cfelse>
      NULL
   </cfif>

   ,
   <!--- 
    Before the below happens, I need to replace the src 
    attributes of the img tags of Arguments.Description 
   --->
   <cfif structkeyexists(ARGUMENTS.Description)>
       <cfqueryparam value="#ARGUMENTS.Description#" cf_sql_type="nvarchar" />
   <cfelse>
       NULL
   </cfif>
)
</cfquery>

我知道<div>它不是表单元素,但不用担心它仍然提交给 CF11,就好像它是使用 JQuery serialize() 诡计的表单元素一样。

当 CF11 处理这个表单时,它会在ARGUMENTS.Description. 我要做的是解析这个参数的内容,找到<img>标签,然后提取出src属性。

然后我将进行更多处理,但最终我需要将src每个img标签中的值替换为由服务器端的 CF11 创建的不同值。只有这样我才能将表单值插入数据库。

JSoup 可以协助完成此类任务吗?感觉就像一个简单的查找和替换任务,但我对如何去做很迷茫。

4

1 回答 1

1

首先,您的标记中有错误,图像标签的 src 属性没有右引号。确保在尝试使用它之前修复它

<cfsavecontent variable="samform">
    <form>
    <div id="Description" contenteditable="true">
    <p>Terminator Genisys is an upcoming 2015 American science fiction action film directed by Alan Taylor. 

    <img id="Img0" src="http://www.moviepics.com/terminator1.jpg" />
    <img id="Img1" src="http://www.moviepics.com/terminator2.jpg" />
    <img id="Img2" src="http://www.moviepics.com/terminator2.jpg" />

    You can find out more by <a href="http://www.imdb.com">clicking here</a></p>
    </div>
    </form>
</cfsavecontent>

<cfscript>
jsoup = CreateObject("java", "org.jsoup.Jsoup");
alterform = jsoup.parse(samform);

imgs = alterform.select("##Description img");


for (img in imgs) {
    img.attr("src", "betterthan#listlast(img.attr("src"),"/")#");
}

imgs[2].attr("src", "TheyShouldHaveStoppedAtT2.gif");

writeOutput('<textarea rows="10" cols="100">#samform#</textarea><br>');
writeOutput('<textarea rows="10" cols="100">#alterform#</textarea>');
</cfscript>

如果您熟悉 css 选择器或 jquery 选择器,那么 jSoup 选择几乎是第二天性。

它的作用是遍历每个img输入#Description#必须加倍,因为 CF)。然后它将 url 更改为基于当前 url 的东西,然后只是为了演示,我用其他东西覆盖第二个 img 的 src 并在 textareas 中输出之前/之后。

于 2015-02-16T17:43:22.887 回答