0
記事から説明を取得するためにjsdomを使用しようとしています。 記事のhtmlコードはここjsdomイメージなしでテキストを取得
<p><img src="http://localhost/bibi_cms/cms/app/images/upload_photo/1506653694941.png"
style="width: 599.783px; height: 1066px;"></p>
<p>testestestestestestestest<br></p>
は、コンテンツから説明を取得するための私のnodejsコードされているで、最初のpタグからテキストを取得し、空の文字列を出力しますようです。だから私はちょうど画像を含んでいないpタグの内容を取得したい。誰でもこの問題について私を助けてくれますか?
const dom = new JSDOM(results[i].content.toString());
if (dom.window.document.querySelector("p") !== null)
results[i].description = dom.window.document.querySelector("p").textContent;