CryptoJS.md5: Cannot read property 'words' of undefined

	var username=$("#myForm").find("#username").val();
var password=$("#myForm").find("#password").val();
var md5password=CryptoJS.MD5(username+password);

$.post(ctx+"/login",{
username:username,
password:md5password
});


今天这样写代码结果无法执行post请求。

网上查了一下,[url]https://code.google.com/p/crypto-js/issues/detail?id=41[/url]


原因就看下面的两行代码
var md5password=CryptoJS.MD5(username+password);
console.log(md5password);
console.log(md5password+"");

输入结果如下:

[img]http://dl2.iteye.com/upload/attachment/0098/2550/1cda5d48-840c-3523-95f3-a3beb8fc7c8c.jpg[/img]

也就是说, MD5方法返回的结果是一个对象。而如果引入了Jquery,就会被转换为一个jquery对象。
[color=blue]it's because the hash you get back is an object (see [https://code.google.com/p/crypto-js/#The_Hasher_Output The Hasher Output]). And when you pass an object to jQuery's data property, then jQuery tries to convert it to a query string.[/color]


所以要转换为字符串,
在post方法中加入password:md5password+""
就可以了。

你可能感兴趣的:(加密,JavaScript)