摘要:
JS代码 /* CryptoJS v3.1.2 code.google.com/p/crypto-js (c) 2009-2013 by Jeff Mott. All rights reserved. code.google.com/p/crypto-js/wiki/License */ var C 阅读全文
摘要:
go type interface {} is interface with no methods 因为返回的是interface类型,需要做转换才能使用 result.Value.( Product) 就是将interface{}专为 Product之后再获取其Price字段的值。 阅读全文