如何在百度富文本编辑器中插入地理位置?
if(type === '2'){
_temp = `<section class="wx-edui-media-wrp custom_select_card_wrp mp_card_wrp"><section contenteditable="false" class="js_uneditable custom_select_card js_editor_mppoi appmsg_poi_iframe res_iframe mpcard" data-pluginname="poi" data-id="${id}" data-poiid="${poiid}" data-name="${name}" data-address="${address}" data-img="${imgUrl}" data-longitude="${lng}" data-latitude="${lat}" data-type="${type}" data-province="" data-city=""><span class="appmsg_card_context appmsg_card_active appmsg_geography_loc_card"><span class="location_title line-clamp1">${fullName}</span><span class="location_detail line-clamp1">${fullAddress}</span><span class="location_img js_nocatch js_noimgpopup js_noimgselected" style="background-image: url('${url}');"></span></span></section></section>`;
}else if(type=== '1'){
let locationShowText = $('#locationShowText').val();
_temp = `<a class="js_poi_entry ct_geography_loc_tip" data-id="${id}" data-name="${name}" data-address="${address}" data-img="${url}" data-longitude="${lng}" data-latitude="${lat}" href="" data-type="${type}" data-poiid="${poiid}" style="font-size:17px;" data-province="" data-city="">${locationShowText}</a>`;
}
wwei_editor.execCommand('insertHtml', _temp);
type等于1是插入文字,type等于2是插入地图卡片。 [图片] 我把第一步插入位置的地图来源换成了高德地图, [图片] 然后如上图所示,上一任留下的代码可以正常打开这个页面。点击确认后,有个二维码预览,能够正常预览,但是走微信公众号预览和发布接口,内容到公众号无法正常显示。 跪问各位大佬,如何能正确插入到百度富文本编辑器,然后将草稿通过接口发布到公众号后,能正常显示地图卡片或文字。 求求各位大佬了 QWQ