我找到了几个关于此问题的答案(Remove ALL white spaces from text [duplicate])
然而,在我的案例中没有一个单独的答案,请看看你是否有时间..
第一步Mako& Python模板:为什么我在第一个空格中有新行和空格:
我们正在使用Mako模板和Python在我们的视图中生成数据:
<!-- The Python def on the page that pulls in the correct id -->
<%def name="pull_id(contact)">
% if "member" in contact:
${contact["member"]["id"]}
% else:
${contact["id"]}
% endif
</%def>
<%def name="render_contact_row(contact)">
<!-- the def returns the id here -->
<tr data-contact-id='${pull_id(contact)}'>
最初我在<tr>
标记中直接使用了Python代码,但是生成了可见的换行符。现在使用<%def
至少将它全部保存在1行,但HTML中还有一些额外的空格
现在我的jQuery:
$('.btn_hide').live("click", function(event) {
// gets the id number from the data tag in html
var $tr = $(this).closest("tr");
var id = $tr.data('contact-id');
// tried this
id.replace(/ /g,'');
// then this
id.replace(/\s+/, "");
// even this
id.replace(/\s/g, "");
// still prints out white space :'(
console.log(id);
//...
});
当它命中console.log行时,chrome打印出来:
显然有断线和额外的空白
最后再次点击Python:
@view_config(route_name="contacts_hide", request_method='POST')
def hide(self):
id = self.param("id")
if id is None:
id = self.request.body
if id.isdigit() is True:
id = int(id)
if id is None:
raise Exception("The contact id parameter cannot be null!")
我一直遇到self.param的问题,所以它会跳过它并点击id = self.request.body
行。
当然会拉断换行符和额外的空格:'(
请帮忙!
答案 0 :(得分:3)
如果您将过滤后的值分配回变量,那么您的任何示例都将起作用:
var id = $tr.data('contact-id');
id = id.replace(/ /g, '');
但我建议你改用$.trim
方法:
var id = $.trim( $tr.data('contact-id') );
它将从值的开头和结尾删除空格。
最后Python有strip
方法,它完全相同:
id = id.strip()